mirror of
https://github.com/tabler/tabler.git
synced 2026-08-01 16:04:37 +04:00
25 lines
773 B
HTML
25 lines
773 B
HTML
---
|
|
layout: base
|
|
---
|
|
|
|
<div class="layout d-flex flex-row vh-100">
|
|
{% if page.nav-side %}
|
|
{% include layout/sidenav.html dark=page.nav-dark folded=page.nav-folded fixed=page.nav-fixed right=page.nav-right %}
|
|
{% endif %}
|
|
|
|
<div class="layout-main d-flex flex-column flex-fill max-w-full">
|
|
{% unless page.nav-side %}
|
|
{% include layout/topnav.html dark=page.header-dark sticky=page.header-sticky %}
|
|
{% include layout/topmenu.html %}
|
|
{% endunless %}
|
|
|
|
<main class="container{% if page.container-size %} container-{{ page.container-size }}{% endif %}{% if page.fluid %}-fluid{% endif %} my-4 flex-fill">
|
|
{% include layout/page-title.html %}
|
|
|
|
{{ content }}
|
|
</main>
|
|
</div>
|
|
</div>
|
|
|
|
{% include layout/modals.html %}
|