aboutsummaryrefslogtreecommitdiff
path: root/src/web/templates/popular.html
diff options
context:
space:
mode:
Diffstat (limited to 'src/web/templates/popular.html')
-rw-r--r--src/web/templates/popular.html13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/web/templates/popular.html b/src/web/templates/popular.html
new file mode 100644
index 00000000..6b2e9001
--- /dev/null
+++ b/src/web/templates/popular.html
@@ -0,0 +1,13 @@
+{% extends "layout.html" %}
+{% block content %}
+<div class="container">
+ <h1>Popular feeds</h1>
+ <ul class="list-group">
+ {% for feed in popular %}
+ <li class="list-group-item">
+ <a href="{{ feed[0] }}">{{ feed[0] }}</a> <span class="badge">{{ feed[1] }}</span>
+ </li>
+ {% endfor %}
+</ul>
+</div><!-- /.container -->
+{% endblock %}
bgstack15