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