sloanelybutsurely.com/lib/cms_web/controllers/post_html/show.html.heex
2025-02-22 13:59:24 -05:00

7 lines
286 B
Text

<article>
<header class="flex flex-row justify-between">
<h1 :if={@post.title} class="font-bold text-xl mb-3">{@post.title}</h1>
<.link :if={@admin?} href={~p"/admin/posts/#{@post}"}>edit</.link>
</header>
<section class="prose">{raw(@post.contents)}</section>
</article>