diff --git a/app/templates/posts/show.html.slim b/app/templates/posts/show.html.slim
index eecc537..ee23812 100644
--- a/app/templates/posts/show.html.slim
+++ b/app/templates/posts/show.html.slim
@@ -62,14 +62,16 @@ article class="h-entry"
img class="rounded hover:opacity-80" src=movie.poster
figcaption= movie.title
hr
- - if text_posts.count > 0
- div class="block grow bg-blue-100 dark:bg-blue-600 rounded px-4 py-2 mb-12"
- p class="text-sm mb-0" This week, years ago
- ul class="mt-0"
- - text_posts.each do |past_post|
- li class="m-0"
- a class="hover:underline" href=past_post.permalink
- = "#{past_post.display_title} (#{past_post.published_at.year})"
+ - if text_posts.count > 0 || photo_posts.count > 0
+ div class="max-w-prose mx-auto text-gray-600 dark:text-gray-200 mb-4"
+ h2 class="text-sm mb-0" This week, years ago
+ - if text_posts.count > 0
+ div class="block grow bg-blue-100 dark:bg-blue-600 rounded px-4 py-2 mb-12"
+ ul class="mt-0"
+ - text_posts.each do |past_post|
+ li class="m-0"
+ a class="hover:underline" href=past_post.permalink
+ = "#{past_post.display_title} (#{past_post.published_at.year})"
div class="max-w-prose mx-auto text-gray-600 dark:text-gray-200 flex"
- photo_posts.group_by{ |p| p.published_at.year }.each do |year, posts|