simplyOpen/templates/category.html

15 lines
302 B
HTML

{% extends "base.html" %}
{% block title %}{{ category }} - {{ SITENAME }}{% endblock %}
{% block content %}
<h1>Category: {{ category }}</h1>
{% for article in articles_page.object_list %}
{% include 'article_summary.inc.html' %}
{% endfor %}
{% include 'pagination.inc.html' %}
{% endblock %}