From bda333c88adf9e6b5cebde71dfa10dc7cc45f521 Mon Sep 17 00:00:00 2001 From: Tanner Collin Date: Wed, 16 Jun 2021 07:36:09 +0000 Subject: [PATCH] Add writing to home page --- themes/theme/templates/index.html | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/themes/theme/templates/index.html b/themes/theme/templates/index.html index f82e078..ee37dd7 100644 --- a/themes/theme/templates/index.html +++ b/themes/theme/templates/index.html @@ -90,7 +90,7 @@

Creations

-

Sometimes I create art or interactive tech. +

Sometimes I create art or interactive tech.

{% for article in articles_page.object_list if article.category.name == 'Projects' %}

{{ article.title }}

@@ -98,5 +98,16 @@ {{ article.summary }} {% endfor %} + +

Writing

+ +

Various articles, mostly about computers.

+ + {% for article in articles_page.object_list if article.category.name == 'Writing' %} +

{{ article.title }}

+
+ {{ article.summary }} +
+ {% endfor %} {% endblock %}