123456789101112131415161718192021222324252627282930313233343536 |
- {% if page-header-file %}
- {% include "layout/headers/{{ page-header-file }}.html" %}
- {% elsif page-header %}
- <!-- Page header -->
- <div class="page-header{% if class %} {{ class }}{% endif %} d-print-none{% if page.layout-navbar-overlap and page.layout-navbar-dark %} text-white{% endif %}">
- <div class="container-xl">
- <div class="row g-2 align-items-center">
- <div class="col">
- {% if pretitle %}
- <!-- Page pre-title -->
- <div class="page-pretitle">
- {{ pretitle }}
- </div>
- {% endif %}
- <h2 class="page-title">
- {% if include.icon %}
- {% include "ui/icon.html" icon=include.icon %}
- {% endif %}
- {{ page-header }}
- </h2>
- {% if description %}
- <div class="text-secondary mt-1">{{ description }}</div>
- {% endif %}
- </div>
- {% if actions %}
- <!-- Page title actions -->
- <div class="col-auto ms-auto d-print-none">
- {% include layout/header-actions/{{ actions }}.html %}
- </div>
- {% endif %}
- </div>
- </div>
- </div>
- {% endif %}
|