{% extends "mvp/base.html" %}
{% comment %}
The page anonymous-facing views extend: a full-screen background with one
centered card.
Fill {% block content %} and the card takes the default width. A page that
wants a different width overrides {% block entrance %} instead, restating
with the size it wants and nesting its own {% block content %}
inside it.
{% endcomment %}
{% block app %}
{% block entrance %}
{% block content %}
{% endblock content %}
{% endblock entrance %}
{% endblock app %}