forked from varia/varia.website
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
306 B
15 lines
306 B
7 years ago
|
{% extends "index.html" %}
|
||
|
{% block content_title %}
|
||
7 years ago
|
<h1>Category: {{ category }}</h1>
|
||
|
<hr>
|
||
7 years ago
|
{% for p in pages %}
|
||
|
{% if p.slug == category %}
|
||
|
<div id="title">{{ p.content }}</div>
|
||
|
{% endif %}
|
||
7 years ago
|
{% if p.slug == projects %}
|
||
|
<div id="title">{{ p.content }}</div>
|
||
|
{% endif %}
|
||
7 years ago
|
{% endfor %}
|
||
7 years ago
|
{% endblock %}
|
||
|
|