website/themes/serene/templates/shortcodes/warning.html

12 lines
336 B
HTML

<blockquote class="callout warning">
{% set icon = load_data(path="static/icon/warning.svg") %}
<div class="icon">
{{ icon | safe }}
</div>
<div class="content">
{% if header %}
<p><strong>{{ header }}</strong></p>
{% endif %}
{{ body | markdown | safe }}
</div>
</blockquote>