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 %}
|
2017-10-27 10:22:26 +02:00
|
|
|
{% 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 %}
|
|
|
|
|