14 lines
407 B
HTML
14 lines
407 B
HTML
{% extends "base.html" %}
|
|
{% block title %}{{ SITENAME }} - Categories{% endblock %}
|
|
|
|
{% block content %}
|
|
<section id="categories">
|
|
<h1>Categories for {{ SITENAME }}</h1>
|
|
<ul>
|
|
{% for category, articles in categories %}
|
|
<li><a href="{{ SITEURL }}/{{ category.url }}">{{ category }}</a></li>
|
|
{% endfor %}
|
|
</ul>
|
|
</section>
|
|
{% endblock %}
|