{% extends "base.html" %}
{% block title %}{{ SITENAME }} - {{ category }}{% endblock %}
{% block content %}
<h1>{{ category }}</h1>
<ul>
{% for article in articles %}
  <li><a href="{{ SITEURL }}"/{{ article.url }}">{{ article.title }}</a></li>
{% endfor %}
</ul>
{% endblock %}