personal-site/themes/lite/templates/category.html

11 lines
267 B
HTML
Raw Normal View History

2021-07-25 22:40:04 +00:00
{% extends "base.html" %}
{% block content %}
2021-07-26 18:42:50 +00:00
<h2>{{ category }}</h2>
{% for article in articles_page.object_list if article.category == category %}
<h3><a href="{{ article.url }}">{{ article.title }}</a></h3>
{{ article.summary }}
{% endfor %}
2021-07-25 22:40:04 +00:00
{% endblock %}