sloane.sh/priv/site/pages/posts.html.eex

12 lines
234 B
Elixir
Raw Normal View History

2024-02-24 13:53:53 -05:00
+++
page_title = "posts"
+++
<ul data-pagefind-ignore>
2024-02-24 13:40:20 -05:00
<%= for post <- sorted_post_attrs(ctx) do %>
<li>
2024-02-24 13:53:53 -05:00
<%= fmt_date(post[:date]) %>: <a href="<%= post[:permalink] %>"><%= post[:title] %></a>
2024-02-24 13:40:20 -05:00
</li>
<% end %>
</ul>