diff options
Diffstat (limited to 'backdrop/templates/categories.html')
-rw-r--r-- | backdrop/templates/categories.html | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/backdrop/templates/categories.html b/backdrop/templates/categories.html new file mode 100644 index 0000000..c5a61c4 --- /dev/null +++ b/backdrop/templates/categories.html @@ -0,0 +1,23 @@ +{% extends "base.html" %} +{% block title %}Categories{%endblock%} + +{% block content %} +{% import 'macros.html' as macros %} +<div class="row"> + <div class="small-12 columns article"> + {% for cat, articles in categories|sort %} + <h2><a href="{{ SITEURL }}/{{ cat.url }}">{{ cat }}</a></h2> + {% for a in articles %} + {% if loop.index < 4 %} + {{ macros.article_summary(a,SITEURL,False,False,disqus=DISQUS_SITENAME) }} + {% elif loop.index == 4 %} + <a class="button" href="{{ SITEURL }}/{{ cat.url }}">See All…</a> + {% endif %} + {% endfor %} + {% if not loop.last %} + <hr> + {% endif %} + {% endfor %} + </div> +</div> +{% endblock content %} |