mirror of
https://github.com/tabler/tabler.git
synced 2026-08-04 17:34:40 +04:00
27 lines
569 B
HTML
27 lines
569 B
HTML
---
|
|
layout: base
|
|
---
|
|
|
|
<div class="wrapper">
|
|
|
|
{% if page.menu-layout == 'vertical' %}
|
|
{% include layout/sidebar.html %}
|
|
{% endif %}
|
|
|
|
<div class="content">
|
|
{% include layout/topnav.html dark=page.header-dark sticky=page.header-sticky %}
|
|
|
|
{% if page.menu-layout != 'vertical' %}
|
|
{% include layout/topmenu.html %}
|
|
{% endif %}
|
|
|
|
<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>
|