{% extends "index.html" %} {% from "includes/auth.html" import auth_scripts, auth_logout %} {% block extra_scripts %} {{ auth_scripts() }} {% endblock %} {% block inner_body %} {% if g.user == config['PERSONA_EMAIL'] %} {{ auth_logout() }} {% endif %} {% endblock %} {% block main %} {% if not g.user %} Login {% elif g.user != config['PERSONA_EMAIL'] %} You shouldn't be here. Turn back now. Sign out {% else %} Drafts {% endif %} {% endblock %}
You shouldn't be here. Turn back now.
Sign out