mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-18 00:40:16 +02:00
14 lines
336 B
HTML
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 %}
|