diff --git a/app/templates/posts/show.html.slim b/app/templates/posts/show.html.slim
index ee23812..1c43c35 100644
--- a/app/templates/posts/show.html.slim
+++ b/app/templates/posts/show.html.slim
@@ -52,36 +52,36 @@ article class="h-entry"
div class="max-w-prose mx-auto text-gray-600 dark:text-gray-200 flex gap-4"
div class="grow" hx-get="/post/top_tracks/#{post.slug}" hx-trigger="load"
- - if past_movies.count > 0
- div class="max-w-prose mx-auto text-gray-600 dark:text-gray-200 mb-4"
- h3 class="text-xl" Movies watched
- div class="flex gap-4 pb-4 mt-4"
- - past_movies.map do |movie|
- a href=movie.url
- figure class="w-24"
- img class="rounded hover:opacity-80" src=movie.poster
- figcaption= movie.title
- hr
- - 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})"
+ - if past_movies.count > 0
+ div class="max-w-prose mx-auto text-gray-600 dark:text-gray-200 mb-4"
+ h3 class="text-xl" Movies watched
+ div class="flex gap-4 pb-4 mt-4"
+ - past_movies.map do |movie|
+ a href=movie.url
+ figure class="w-24"
+ img class="rounded hover:opacity-80" src=movie.poster
+ figcaption= movie.title
+ hr
+ - 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|
- div class="max-w-prose mx-auto text-gray-600 dark:text-gray-200"
+ 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|
div class="max-w-prose mx-auto text-gray-600 dark:text-gray-200"
- = year
- div class="grid grid-cols-3 gap-4 mb-4 max-w-prose mx-auto"
- -posts.each do |post|
- == render "shared/photo_post", post: post
- div class="mb-4 max-w-screen-md mx-auto border-t-4 border-solid border-gray-400 dark:border-gray-600"
+ div class="max-w-prose mx-auto text-gray-600 dark:text-gray-200"
+ = year
+ div class="grid grid-cols-3 gap-4 mb-4 max-w-prose mx-auto"
+ -posts.each do |post|
+ == render "shared/photo_post", post: post
+ div class="mb-4 max-w-screen-md mx-auto border-t-4 border-solid border-gray-400 dark:border-gray-600"
div class="max-w-prose mx-auto text-gray-600 dark:text-gray-200 flex"
div class=""