{# App Layout — Mercuriale.io Intermediate layout for all authenticated pages. Provides: header + breadcrumb slot + flash messages + content slot + footer. Extends base.html.twig (which handles PWA meta, offline banner, prompts). #} {% extends 'base.html.twig' %} {% block stylesheets %} {{ parent() }} {% endblock %} {% block app_header %} {% if app.user %} {% include 'components/_header.html.twig' %} {% endif %} {% endblock %} {% block body %}
{% block breadcrumb %}{% endblock %} {% for label, messages in app.flashes %} {% for message in messages %}
{{ message }}
{% endfor %} {% endfor %}
{% block content %}{% endblock %}
{% include 'components/_footer.html.twig' %}
{% endblock %}