blob: 9523d43ff3764f8994414f59f4ebecfcfa0066ae (
plain)
1
2
3
4
5
6
7
|
{% extends "layout.html" %}
{% block content %}
<div class="container">
<h1>{{ _('You are subscribed to %(feed_count)d feeds.', feed_count=feeds.count()) }} · {{ _('Add a') }} <a href="{{ url_for("feed.form") }}">{{ _('feed') }}</a></h1>
{% include "feed_list.html" %}
</div><!-- /.container -->
{% endblock %}
|