This repository has been archived on 2023-11-26. You can view files and clone it, but cannot push or open issues or pull requests.
bdfr-browser/priv/templates/http/subreddit_posts.eex

17 lines
551 B
Elixir
Raw Normal View History

2023-08-14 11:07:38 +00:00
<h2><%= subreddit %></h2>
2023-05-17 22:13:55 +00:00
2023-08-14 11:07:38 +00:00
<div class="row text-center">
<div class="d-grid gap-2 col-12 mx-auto">
<%= for post <- posts do %>
<div class="card">
<div class="card-body">
<h5 class="card-title"><a href="/r/<%= subreddit %>/<%= date %>/<%= post.id %>"><%= post.title %></a></h5>
<h6 class="card-subtitle mb-2 text-body-secondary">
2023-08-18 14:55:47 +00:00
<small><%= post.num_comments %> comment(s) - <%= DateTime.to_iso8601(post.posted_at) %></small>
2023-08-14 11:07:38 +00:00
</h6>
2023-05-17 22:13:55 +00:00
</div>
</div>
2023-08-14 11:07:38 +00:00
<% end %>
</div>
</div>