{% block head %}
Newspipe{% if head_titles %} - {{ ' - '.join(head_titles) }}{% endif %}
{% endblock %} {% block menu %}
Toggle navigation
Newspipe
{% if head_titles %}
{{ " - ".join(head_titles) }}
{% endif %}
{% if current_user.is_authenticated %} {% if conf.CRAWLING_METHOD == "classic" and (not conf.ON_HEROKU or current_user.is_admin) %}
{{ _('Fetch') }}
{% endif %}
{{ _('Add a new feed') }}
{{ _('Add a new category') }}
{{ _('Feed') }}
{{ _('Popular') }}
{{ _('Inactive') }}
{{ _('History') }}
{{ _('All') }}
{{ _('Profile') }}
{{ _('Your data') }}
{{ _('About') }}
{% if current_user.is_admin %}
{{ _('Dashboard') }}
{% endif %}
{{ _('Logout') }}
{% else %}
{{ _('Popular') }}
{{ _('About') }}
{% endif %}
{% endblock %}
{% block messages %} {% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% for category, message in messages %}
×
{{ message }}
{% endfor %} {% endif %} {% endwith %} {% endblock %}
{% block content %}{% endblock %}