{% block header %}
PleaseShare
{% if session['uploads'] %}
{{ _('Your uploads') }}
|{% endif%}
{{ _('Need help?') }}
|
{{ _('About') }}
|
{{ _('ToS') }}
|
{{ _('Contact') }}
{% endblock %} {% with errors = get_flashed_messages(category_filter=["error"]) %} {% if errors %} {%- for msg in errors %}
{{ msg }}
{% endfor -%} {% endif %} {% endwith %} {% with success = get_flashed_messages(category_filter=["success"]) %} {% if success %} {%- for msg in success %}
{{ msg }}
{% endfor -%} {% endif %} {% endwith %}
{% block body %}{% endblock %}