manymanymany-varia-websites/themes/cetcat/templates/category.html

15 lines
306 B
HTML
Raw Normal View History

2017-07-06 14:28:42 +02:00
{% extends "index.html" %}
{% block content_title %}
<h1>Category: {{ category }}</h1>
<hr>
2017-10-24 10:50:06 +02:00
{% for p in pages %}
{% if p.slug == category %}
<div id="title">{{ p.content }}</div>
{% endif %}
{% if p.slug == projects %}
<div id="title">{{ p.content }}</div>
{% endif %}
2017-10-24 10:50:06 +02:00
{% endfor %}
2017-07-06 14:28:42 +02:00
{% endblock %}