<%= for post <- @posts do %>
  <article id={"post-#{post.id}"}>
    <h2><.link href={~p"/posts/#{post}"}>{post.title}</.link></h2>
    <p>{post.contents}</p>
  </article>
<% end %>