{% extends "base.html" %} {% block title %}{{ SITENAME }} - Categories{% endblock %} {% block content %} {% block content_title %} {% endblock %} {% for category, articles in categories | sort(attribute="slug") %} {% set c = category|replace("-","") %} {% set c = ''+c %} {{ c }} {% for article in articles | reverse %} {{ article.title }} {{ article.summary }} {% endfor %} {% endfor %} {% endblock %}