Add notes to home page

This commit is contained in:
Tanner Collin 2023-03-11 22:27:50 -07:00
parent dd31584061
commit 34476c68e9

View File

@ -21,5 +21,19 @@
</div>
{% endfor %}
<h2>Notes</h2>
<p>
Various notes related to solarpunk theory and designs.
</p>
{% for article in articles_page.object_list if article.category.name == 'Notes' %}
<h3><a href="{{ article.url }}">{{ article.title }}</a></h3>
<div class="summary">
{{ article.summary }}
</div>
{% endfor %}
</div>
{% endblock %}