{% extends "structure/base.html" %}
{#
Public / anonymous layout.
Same chrome as the admin base (navbar, theme + design + dark-mode, icon font,
flashes and Unpoly partial-rendering) but without the admin sidebar menu and
with a full-width main column. Companion libraries serving anonymous,
non-admin pages (landing pages, public indexes, …) should extend this and
fill {% block content %}.
These overrides apply to the full-page render only; partial (Unpoly) renders
go through base_partial.html, which has no sidebar/menu to begin with, so the
empty blocks are simply ignored there.
#}
{% block bodyclass %}fcu-public{% endblock %}
{% block sidebar %}{% endblock %}
{% block menu %}{% endblock %}