{# `outer_content` is for stuff you want above `content` on every page. #}
{% block outer_content %}
{% include 'site/messages/display.html' %}
{% endblock %}
{% block content %}
{% endblock %}
{% block sitefooter %}
{% endblock %}
{% include 'purchase/start.html' %}
{% include 'purchase/message.html' %}
{{ review_popups() }}
{% if not logged %}
{{ _('Please sign in') }}
{# TODO(copy): Localize when BrowserID is called Persona. #}
{% with personaid_url='https://browserid.org/' %}
Just log in or register with your
BrowserID account below.
{% endwith %}
Additional authorization required
{% endif %}
{% block dbgoverlay %}{% endblock %}
{# js #}
{% block site_js %}
{# When bug 755694 is solved, expose the shim again. #}
{# #}
{% if not logged %}
{# We need Persona for only non-authenticated users. #}
{% endif %}
{{ js('mkt/consumer') }}
{% endblock %}
{% block paypal_js %}
{% if logged %}
{# We need PayPal for only authenticated users. #}
{% endif %}
{% endblock %}
{% block js %}{% endblock %}