2024-05-12 11:35:42 +02:00

14 lines
336 B
HTML

{#Usage:#}
{# {% include "framework/header/page-header.html" with title="Foobar" subtitle="Barfoo" %}#}
{% if title %}
<h1 class="page-header text-center mb-3">
{{ title }}
{% if subtitle %}
<br>
<small class="text-muted">{{ subtitle }}</small>
{% endif %}
</h1>
{% endif %}