aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r/templates/feeds.html
diff options
context:
space:
mode:
Diffstat (limited to 'pyaggr3g470r/templates/feeds.html')
-rw-r--r--pyaggr3g470r/templates/feeds.html11
1 files changed, 11 insertions, 0 deletions
diff --git a/pyaggr3g470r/templates/feeds.html b/pyaggr3g470r/templates/feeds.html
new file mode 100644
index 00000000..0893f982
--- /dev/null
+++ b/pyaggr3g470r/templates/feeds.html
@@ -0,0 +1,11 @@
+{% extends "layout.html" %}
+{% block content %}
+<div class="container">
+ <h1>You are subscribed to the following feeds</h1>
+ <ul>
+ {% for feed in feeds %}
+ <li><a href="/feed/{{ feed.id }}">{{ feed.title }}</a></li>
+ {% endfor %}
+ </ul>
+</div><!-- /.container -->
+{% endblock %} \ No newline at end of file
bgstack15