homebrewserver.club/themes/homebrewtheme/templates/category.html
2019-07-01 11:44:55 +02:00

11 lines
272 B
HTML

{% extends "index.html" %}
{% block content_title %}
<h2>{{ category }}</h2>
{% for article in articles_page.object_list %}
{% if article.title == 'Introduction' %}
<div class='category-intro'>{{article.content}}</div>
{% endif %}
{% endfor %}
{% endblock %}