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

10 lines
327 B
Plaintext
Raw Normal View History

<h1 class="post-title">Post Archive</h1>
<%= for post <- @posts do %>
<div class="post-summary">
2024-08-25 16:57:01 +00:00
<p class="post-date"><date><%= JOL.Blog.format_date(post.date) %></date></p>
<h3> <.link href={~p"/blog/#{post.slug}"}><%= post.title %> </.link> </h3>
<p><%= raw post.lede %></p>
</div>
<% end %>