{% extends "adminlte_full/base.html" %} {% import "adminlte_full/macros/widgets.html" as widgets %} {% block page_title %}{{ title }} Layout{% endblock %} {% block body_attributes %} class="hold-transition {{ layout|join(' ') }}"{% endblock %} {% block page_content %} {% call widgets.render_card('How to use', color=ThemeColor.PRIMARY, outline=true) %}
In the application settings, set the parameter ADMINLTE_LAYOUT to:
| Layout | Value |
|---|---|
| Top Navigation |
Also disable sidebar: |
| Top Navigation + Sidebar |
ThemeLayout.TOP_NAV | ThemeLayout.COLLAPSED_SIDEBAR
|
| Boxed | ThemeLayout.DEFAULT | ThemeLayout.BOXED |
| Fixed Sidebar | ThemeLayout.DEFAULT | ThemeLayout.FIXED_SIDEBAR |
| Fixed Navbar | ThemeLayout.DEFAULT | ThemeLayout.FIXED_TOP_NAV |
| Fixed Footer | ThemeLayout.DEFAULT | ThemeLayout.FIXED_FOOTER |
| Collapsed Sidebar | ThemeLayout.DEFAULT | ThemeLayout.COLLAPSED_SIDEBAR |