6 lines
181 B
Text
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 %>
|