Files
stundenfuchs/app/templates/ui/help_section.html
T
maddin 6fbd1bb3c2
CI / checks (push) Has been cancelled
chore: initialize public repository
2026-03-22 12:57:09 +00:00

10 lines
318 B
HTML

{% macro help_section(title, subtitle='') -%}
<article class="help-section">
<header class="help-section__header">
<h2>{{ title }}</h2>
{% if subtitle %}<p class="muted">{{ subtitle }}</p>{% endif %}
</header>
<div class="help-section__body">{{ caller() }}</div>
</article>
{%- endmacro %}