homebrewserver.club/themes/homebrewtheme/templates/category.html

11 lines
272 B
HTML
Raw Normal View History

2019-06-12 15:08:48 +02:00
{% extends "index.html" %}
{% block content_title %}
2019-07-01 11:44:55 +02:00
<h2>{{ category }}</h2>
{% for article in articles_page.object_list %}
{% if article.title == 'Introduction' %}
<div class='category-intro'>{{article.content}}</div>
{% endif %}
{% endfor %}
2019-06-12 15:08:48 +02:00
{% endblock %}