1
0
mirror of https://github.com/tabler/tabler.git synced 2026-08-01 07:54:38 +04:00
Files
tabler/pages/_layouts/default.html
T
2020-01-14 21:20:31 +01:00

27 lines
493 B
HTML

---
layout: base
---
<div class="wrapper">
{% if page.sidebar %}
{% include layout/sidebar.html %}
{% endif %}
<div class="content">
{% include layout/topnav.html %}
{% unless page.sidebar %}
{% include layout/topmenu.html %}
{% endunless %}
<div class="content-page">
<main class="container{% if page.container-size %}-{{ page.container-size }}{% endif %} my-4 flex-fill">
{% include layout/page-title.html %}
{{ content }}
</main>
</div>
</div>
</div>