1
0
mirror of https://github.com/tabler/tabler.git synced 2025-12-21 17:34:25 +04:00
Files
tabler/pages/_includes/layout/page-header.html
2020-02-01 21:56:24 +01:00

28 lines
600 B
HTML

<!-- Page title -->
<div class="page-header">
<div class="row align-items-center">
<div class="col-auto">
{% if include.pretitle %}
<!-- Page pre-title -->
<div class="page-pretitle">
{{ include.pretitle }}
</div>
{% endif %}
<h2 class="page-title">
{{ include.title }}
</h2>
</div>
{% if include.description %}
<div class="col-auto">
<div class="text-muted text-h5 mt-2">{{ include.description }}</div>
</div>
{% endif %}
{% if include.actions %}
{% include layout/page-header-actions.html actions=include.actions %}
{% endif %}
</div>
</div>