{% extends "django_fundamentals/layouts/base.html" %} {# CENTERED, SIDEBAR-FREE LAYOUT FOR LOGIN / SIGNUP / PASSWORD RESET / ERRORS. #} {# A USER WHO ISN'T SIGNED IN YET HAS NOTHING TO NAVIGATE TO, SO THE APP SHELL #} {# WOULD BE DEAD SPACE HERE. #} {% block body %}
{# MINIMAL HEADER — BRAND + THEME TOGGLE ONLY #}
{% include "django_fundamentals/molecules/brand_mark.html" %} {% include "django_fundamentals/molecules/theme_toggle.html" %}
{% include "django_fundamentals/organisms/messages.html" %}
{% block auth_header %} {% if page_title %}

{{ page_title }}

{% if page_subtitle %}

{{ page_subtitle }}

{% endif %}
{% endif %} {% endblock %} {% block content %}{% endblock %}
{% block auth_aside %}{% endblock %}
{% block footer %} {% include "django_fundamentals/organisms/footer.html" %} {% endblock %}
{% endblock %}