aboutsummaryrefslogtreecommitdiffstats
path: root/aboutwilson/templates/categories.html
blob: 33fb24b83d21cb7047f79c93a474f5a9c67ed2b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
{% extends "base.html" %}
{% block description %}The Categories page lists all categories used to classify the posts. Each post is categorized by a category helping readers find out easily what they are looking for.{% endblock %}
{% block title %}Categories — {{ SITENAME }}{% endblock %}
{% block content %}
<h1>Categories</h1>
<ul>
{% for category, articles in categories %}
	<li><a href="{{ SITEURL }}/{{ category.url }}">{{ category }}</li>
{% endfor %}
</ul>
{% endblock %}