1234567891011121314151617181920212223242526272829303132333435363738394041 |
- ---
- layout: base
- ---
- {% assign no-container = page.no-container | default: layout.no-container %}
- <div class="page">
- {% if layout-sidebar %}
- <!-- Sidebar -->
- {% include "layout/sidebar.html" dark=layout-sidebar-dark right=layout-sidebar-right transparent=layout-navbar-transparent breakpoint="lg" %}
- {% endif %}
- {% unless layout-hide-topbar %}
- <!-- Navbar -->
- {% include "layout/navbar.html" condensed=layout-navbar-condensed overlap=layout-navbar-overlap dark=layout-navbar-dark hide-brand=layout-navbar-hide-brand hide-menu=layout-navbar-hide-menu sticky=layout-navbar-sticky transparent=layout-topbar-transparent class=layout-navbar-class %}
- {% endunless %}
- <div class="page-wrapper{% if layout-wrapper-full %} page-wrapper-full{% endif %}">
- {% include "layout/page-header.html" %}
- <!-- Page body -->
- <div class="page-body">
- {% if layout-wrapper-full %}
- {{ content }}
- {% else %}
- {% unless no-container %}
- <div class="container-xl{% if page-container-centered %} my-auto{% endif %}{% if page-container-class %} {{ page-container-class }}{% endif %}">
- {% endunless %}
- {{ content }}
- {% unless no-container %}
- </div>
- {% endunless %}
- {% endif %}
- </div>
- {% include "layout/footer.html" %}
- </div>
- </div>
- {% comment %}{% include "settings.html" %}{% endcomment %}
|