default.html 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. ---
  2. layout: base
  3. ---
  4. {% assign no-container = no-container %}
  5. <div class="page">
  6. {% if layout-sidebar %}
  7. <!-- Sidebar -->
  8. {% include "layout/sidebar.html" dark=layout-sidebar-dark right=layout-sidebar-right transparent=layout-navbar-transparent breakpoint="lg" %}
  9. {% endif %}
  10. {% unless layout-hide-topbar %}
  11. <!-- Navbar -->
  12. {% 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 %}
  13. {% endunless %}
  14. <div class="page-wrapper{% if layout-wrapper-full %} page-wrapper-full{% endif %}">
  15. {% include "layout/page-header.html" %}
  16. <!-- Page body -->
  17. <div class="page-body">
  18. {% if layout-wrapper-full %}
  19. {{ content }}
  20. {% else %}
  21. {% unless no-container %}
  22. <div class="container-xl{% if container-centered %} my-auto{% endif %}">
  23. {% endunless %}
  24. {{ content }}
  25. {% unless no-container %}
  26. </div>
  27. {% endunless %}
  28. {% endif %}
  29. </div>
  30. {% include "layout/footer.html" %}
  31. </div>
  32. </div>
  33. {% comment %}{% include "settings.html" %}{% endcomment %}