mirror of
https://github.com/tabler/tabler.git
synced 2026-07-26 04:54:40 +04:00
25 lines
682 B
HTML
25 lines
682 B
HTML
---
|
|
layout: base
|
|
---
|
|
|
|
{% assign page-header = page.page-header | default: layout.page-header %}
|
|
|
|
<div class="page">
|
|
{% include layout/navbar-primary.html %}
|
|
{% include layout/navbar-secondary.html %}
|
|
|
|
<div class="content">
|
|
<div class="container{% if page.container-centered %} d-flex flex-column justify-content-center{% endif %}">
|
|
{% if page-header %}
|
|
{% include layout/page-header.html title=page-header description=page.page-header-description actions=page.page-header-actions pretitle=page.page-header-pretitle %}
|
|
{% endif %}
|
|
|
|
{{ content }}
|
|
</div>
|
|
|
|
{% include layout/footer.html %}
|
|
</div>
|
|
</div>
|
|
|
|
{% include ui/modal.html modal-id="customize" top=true %}
|