7 lines
286 B
Text
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>
|