From b11295af250453335f96caf445cee2af1333bf81 Mon Sep 17 00:00:00 2001 From: Nick Pegg Date: Sat, 15 Nov 2025 17:19:11 -0800 Subject: [PATCH] min spacing on date in post list --- media/css/index.css | 4 ++++ templates/posts.html | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/media/css/index.css b/media/css/index.css index aa46388..b01de23 100644 --- a/media/css/index.css +++ b/media/css/index.css @@ -57,6 +57,10 @@ blockquote { grid-template-columns: 1fr 6fr; } +.post-date { + min-width: 6em; +} + /* nav ****************************************/ .nav { diff --git a/templates/posts.html b/templates/posts.html index 5525ece..923f20b 100644 --- a/templates/posts.html +++ b/templates/posts.html @@ -8,7 +8,7 @@

Latest Posts

{% for post in posts %}
- {{post.date}} + {{post.title}}
{% endfor %}