Add lite version of website

This commit is contained in:
2021-07-26 18:42:50 +00:00
parent 65b3ad7fbf
commit 600cc9e51f
5 changed files with 70 additions and 66 deletions

View File

@@ -1,6 +1,10 @@
{% extends "base.html" %}
{% block content %}
<h2>{{ category.title }}</h2>
<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 %}
{% endblock %}