11 lines
272 B
HTML
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 %}
|
|
|