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

14 lines
291 B
HTML
Raw Normal View History

2017-07-06 14:28:42 +02:00
{% extends "index.html" %}
{% block content_title %}
2017-10-24 10:50:06 +02:00
<h1>{{ category }}</h1>
{% 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 %}