10 lines
545 B
Plaintext
10 lines
545 B
Plaintext
<div class="pastel-card p-6" data-block-type="card" style="border-radius: 20px;">
|
|
{% if title %}<h3 class="font-display text-2xl mb-3" style="color: hsl(var(--card-foreground));">{{ title }}</h3>{% endif %}
|
|
{% if body %}<div class="font-body" style="color: hsl(var(--card-foreground) / 0.85); line-height: 1.75;">
|
|
{{ body|safe }}
|
|
</div>{% endif %}
|
|
{% if footer %}<div class="mt-6 pt-4 border-t font-body text-sm" style="border-color: hsl(var(--border)); color: hsl(var(--muted-foreground));">
|
|
{{ footer|safe }}
|
|
</div>{% endif %}
|
|
</div>
|