mirror of
https://github.com/tabler/tabler.git
synced 2026-08-24 11:54:23 +04:00
26 lines
635 B
HTML
26 lines
635 B
HTML
---
|
|
layout: base
|
|
---
|
|
|
|
{% assign page-title = page.page-title | default: layout.page-title %}
|
|
|
|
<div class="page">
|
|
{% if page.sidebar %}
|
|
{% include layout/sidebar.html %}
|
|
{% endif %}
|
|
|
|
<div class="content">
|
|
{% include layout/topnav.html %}
|
|
|
|
<div class="content-page">
|
|
<main class="container{% if page.container-size %}-{{ page.container-size }}{% endif %} my-4 flex-fill">
|
|
{% if page-title %}
|
|
{% include layout/page-title.html title=page-title description=page.page-title-description actions=page.page-title-actions pretitle=page.page-pretitle %}
|
|
{% endif %}
|
|
|
|
{{ content }}
|
|
</main>
|
|
</div>
|
|
</div>
|
|
</div>
|