JOL/lib/jol_web/controllers/blog_html/index.heex

8 lines
145 B
Plaintext

<h1>The Blog</h1>
<ul>
<%= for post <- @posts do %>
<li><.link href={~p"/blog/#{post.slug}"}><%= post.title %></.link></li>
<% end %>
</ul>