forked from varia/varia.website
15 lines
306 B
HTML
15 lines
306 B
HTML
{% extends "index.html" %}
|
|
{% block content_title %}
|
|
<h1>Category: {{ category }}</h1>
|
|
<hr>
|
|
{% 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 %}
|
|
|