{# Load frontend based on FRONTEND_MODE setting #} {% if frontend.mode == 'fastui' %} {% include 'partials/frontend_fastui.html' %} {% else %} {% include 'partials/frontend_default.html' %} {% endif %} {% block extra_head %}{% endblock %} {% block body %}
{% block nav %} {% endblock %}
{% if flashes %}
{% for flash in flashes %}
{{ flash.message }}
{% endfor %}
{% endif %} {% block content %}{% endblock %}
{% endblock %} {% block extra_scripts %}{% endblock %}