From e6763b1686134529e5bcc44df7a6c10c7020e292 Mon Sep 17 00:00:00 2001 From: Lucas Oskorep Date: Tue, 12 Mar 2024 12:59:14 -0400 Subject: [PATCH] feat: adding in simple template for listing blog articles --- templates/blog-list.html | 29 +++++++++++++++-------------- 1 file changed, 15 insertions(+), 14 deletions(-) diff --git a/templates/blog-list.html b/templates/blog-list.html index 7c77133..ff46401 100644 --- a/templates/blog-list.html +++ b/templates/blog-list.html @@ -8,23 +8,24 @@ {% for article in articles %} {% if article.category == 'blog' %}
-

+
+

{{ article.title }} -

+

{% if article.tags %} - {% endif %} -

- {{ article.summary }} -

- Continue reading » + + + + + + + + + + + +
{% endif %} {% endfor %}