You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
672 B
22 lines
672 B
{% extends "base.html" %}
|
|
|
|
{% block title %}{{ SITENAME }} - Categories{% endblock %}
|
|
|
|
{% block content_title %}
|
|
<h1>Overview</h1>
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
{% for category, articles in categories|sort %}
|
|
<h1 class="category">{{ category }}</h1>
|
|
{% for article in articles %}
|
|
<article class="hentry">
|
|
<header>
|
|
<h2 class="entry-title"><a href="{{ SITEURL }}/{{ article.url }}" rel="bookmark" title="Permalink to {{ article.title|striptags }}">{{ article.title }}</a></h2>
|
|
</header>
|
|
<div class="entry-content"> {{ article.summary }} </div>
|
|
<footer class="post-info"></footer>
|
|
</article>
|
|
{% endfor %}
|
|
{% endfor %}
|
|
{% endblock %}
|
|
|