mirror of
https://github.com/tabler/tabler.git
synced 2025-12-27 06:39:59 +04:00
26 lines
834 B
HTML
26 lines
834 B
HTML
---
|
|
layout: base
|
|
---
|
|
|
|
<div class="d-flex flex-row h-100p">
|
|
{% if page.nav-position == 'left' or page.nav-position == 'right'%}
|
|
{% include layout/sidenav.html dark=page.sidenav-dark folded=page.sidenav-folded fixed=true %}
|
|
{% endif %}
|
|
|
|
<div class="layout-main d-flex flex-column flex-fill max-w-full">
|
|
{% include layout/topnav.html dark=page.header-dark sticky=page.header-sticky %}
|
|
|
|
{% unless page.nav-position == 'left' or page.nav-position == 'right'%}
|
|
{% 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 %}
|