Varia's website
https://varia.zone
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.
13 lines
291 B
13 lines
291 B
{% extends "index.html" %}
|
|
{% block content_title %}
|
|
<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 %}
|
|
{% endfor %}
|
|
{% endblock %}
|
|
|
|
|