Can anyone help me with this make the code to template there is still sth wrong I think syntax issue like field is not found
It is not a problem, it’s about an idea of template and I thought it would be cool to see this as a template
Can anyone plz make it to template and share it thanks
The code
Front
<div class="card">
<div class="quote">“{{Quote}}”</div>
<div class="source">
— <strong>{{Author}}</strong>, <em>{{Source}}</em>
</div>
</div>
Back
{{FrontSide}}
{{#Note}}
<hr>
<div class="note">{{Note}}</div>
{{/Note}}
{{#Tags}}
<div class="tags">Tags: {{Tags}}</div>
{{/Tags}}
Styling
.card {
font-family: system-ui, sans-serif;
font-size: 18px;
color: #333;
background: #f9f9f9;
border-radius: 10px;
padding: 20px;
max-width: 500px;
margin: auto;
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.quote {
font-size: 20px;
font-style: italic;
color: #1a1a1a;
margin-bottom: 15px;
}
.source {
font-size: 16px;
color: #555;
}
.note {
margin-top: 20px;
font-size: 16px;
background: #fff8dc;
padding: 12px;
border-left: 4px solid #f0c36d;
}
.tags {
margin-top: 10px;
font-size: 14px;
color: #888;
}