blob: edda5faaf140a99c627652d71d14406e6b23a14b [file] [log] [blame]
{% extends "base.html" %}
{% block title %}{{ SITENAME }} - Categories{% endblock %}
{% block content %}
{% set custom_header = "Categories" %}
{% include "header.html" %}
<div id="like_article">
<ul>
{% for category, articles in categories %}
<li><a href="{{ SITEURL }}/{{ category.url }}">{{ category }}</a></li>
{% endfor %}
</ul>
</div>
<footer>
</footer>
{% endblock %}