From e3aabfe28bde9833246b9c09be3a4f6cc4666d83 Mon Sep 17 00:00:00 2001 From: Daniel Nitsikopoulos Date: Sat, 19 Oct 2024 19:39:37 +1100 Subject: [PATCH] And render links on status pages --- slices/main/templates/posts/show.html.slim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/slices/main/templates/posts/show.html.slim b/slices/main/templates/posts/show.html.slim index ffc3d37..cbb532a 100644 --- a/slices/main/templates/posts/show.html.slim +++ b/slices/main/templates/posts/show.html.slim @@ -39,7 +39,7 @@ article class="h-entry" - else article class="mb-12 prose dark:prose-invert max-w-prose mx-auto text-gray-800 dark:text-gray-200 prose-a:text-blue-600 prose-a:no-underline hover:prose-a:underline prose-img:rounded prose-video:rounded" div class="e-content prose-code:bg-pink-100 prose-code:text-pink-900" - == post.content + == post.rendered_content - if post.photos? - post.photos.each_with_index do |photo, idx|