varia.website/themes/cetcat/templates/category.html
2017-10-24 10:50:06 +02:00

11 lines
209 B
HTML

{% extends "index.html" %}
{% block content_title %}
<h1>{{ category }}</h1>
{% for p in pages %}
{% if p.slug == category %}
<div id="title">{{ p.content }}</div>
{% endif %}
{% endfor %}
{% endblock %}