<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>