{% extends "layout.html" %} {% import "macros.html" as macros %} {% macro make_title() %} Feeds {% if request.args.tags %} tagged {{ request.args.tags }} {% endif %} {% endmacro %} {% block page_title %}{{ make_title() | striptags }}{% endblock %} {% block main_title %}{{ make_title() }}{% endblock %} {% block body %}
{% if counts %}

{{ counts.total }} feeds {# TODO: we can't have entries here because we can't filter entries by broken / updates_enabled #} {% endif %} {% for feed, feed_tags, entry_counts in feed_data %}

{{- macros.feed_title(feed) -}}

{% else %} {% if not error %} {% if not request.args.tags %}

no feeds

{% else %}

no results for this query

{% endif %} {% endif %} {% endfor %} {% endblock %}