{% import "Juice/macros/html.html" as html with context %} {% import "Juice/macros/menu.html" as menu with context %} {% import "Juice/macros/widget.html" as widget with context %} {{ html.head("%s | " + __.APPLICATION_NAME) }} {{ html.bootswatch_theme('yeti') }} {{ html.css("all-css") }} {# HEADER #}
{{ menu.navbar(brand=__.APPLICATION_NAME, exclude_groups=["admin"]) }}
{# BODY #}
{{ widget.flashed_messages() }}
{# The content of the site will be included here automatically #} {% include __template__ %}
{# FOOTER #} {{ html.js("all-js") }}