Files
tabler/pages/_layouts/default.html
T
2019-10-27 13:09:59 +01:00

24 lines
750 B
HTML

---
layout: base
---
<div class="d-flex flex-row h-100p">
{% comment %}{% include layout/sidenav.html dark=true folded=false fixed=true %}{% endcomment %}
<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 %}