{% extends "base.html" %}
{% block content %}
<div id="categories">
{% for category, articles in categories %}
    <a href="{{ SITEURL }}/{{ category.url }}">{{ category }}</a>
{% endfor %}
</div>
{% endblock %}