diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2016-09-20 15:31:12 +0200 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2016-09-20 15:31:12 +0200 |
commit | 2abfc7c43131e0366137b27b0b75132da6ef6582 (patch) | |
tree | cd313c9c1a80fb64508b2e17b660b8108452cbce /src/web/templates/popular.html | |
parent | Few improvemnts for the tag cloud of the user's profile pages. (diff) | |
download | newspipe-2abfc7c43131e0366137b27b0b75132da6ef6582.tar.gz newspipe-2abfc7c43131e0366137b27b0b75132da6ef6582.tar.bz2 newspipe-2abfc7c43131e0366137b27b0b75132da6ef6582.zip |
simple test of a 'popular' page.
Diffstat (limited to 'src/web/templates/popular.html')
-rw-r--r-- | src/web/templates/popular.html | 13 |
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 %} |