sloanelybutsurely.com/lib/cms_web/controllers/post_html/index.html.heex
2025-02-22 12:35:49 -05:00

6 lines
181 B
Text

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