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.date}} {{post.title}}
{% endfor %}