aboutsummaryrefslogtreecommitdiff
path: root/newspipe/templates/feeds.html
diff options
context:
space:
mode:
Diffstat (limited to 'newspipe/templates/feeds.html')
-rw-r--r--newspipe/templates/feeds.html7
1 files changed, 7 insertions, 0 deletions
diff --git a/newspipe/templates/feeds.html b/newspipe/templates/feeds.html
new file mode 100644
index 00000000..805e1b74
--- /dev/null
+++ b/newspipe/templates/feeds.html
@@ -0,0 +1,7 @@
+{% extends "layout.html" %}
+{% block content %}
+<div class="container">
+ <h1>{{ _('You are subscribed to %(feed_count)d feeds.', feed_count=feeds.count()) }} <a href="{{ url_for("feed.form") }}">{{ _('Add') }}</a> {{ _('a feed') }}.</h1>
+ {% include "feed_list.html" %}
+</div><!-- /.container -->
+{% endblock %}
bgstack15