From b229a9d62028982a8a3ac5c889842b1f6022f607 Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Sat, 24 Jun 2023 20:59:15 +0000 Subject: [PATCH] blog: Allow more spacing between posts and make headlines slightly larger Signed-off-by: Michael Tremer --- src/templates/blog/modules/list.html | 25 +++++++++++++++---------- 1 file changed, 15 insertions(+), 10 deletions(-) diff --git a/src/templates/blog/modules/list.html b/src/templates/blog/modules/list.html index beda14d0..6d704b42 100644 --- a/src/templates/blog/modules/list.html +++ b/src/templates/blog/modules/list.html @@ -1,14 +1,19 @@ {% for post in posts %} -
- {{ post.title }} -
-

- {{ locale.format_date(post.published_at, shorter=True, relative=relative) }} +

+

+ + {{ post.title }} + +
- {% if "lightningwirelabs.com" in post.tags %} - {{ _("by Lightning Wire Labs") }} - {% elif show_author and post.author %} - {{ _("by %s") % post.author }} - {% end %} +
+ {{ locale.format_date(post.published_at, shorter=True, relative=relative) }} + + {% if "lightningwirelabs.com" in post.tags %} + {{ _("by Lightning Wire Labs") }} + {% elif show_author and post.author %} + {{ _("by %s") % post.author }} + {% end %} +

{% end %} -- 2.47.3