42 lines
1.2 KiB
Elixir
42 lines
1.2 KiB
Elixir
|
<h1><%= @group.title %></h1>
|
||
|
|
||
|
<%= unless is_nil(prev_page_path(@conn, @items)) do %>
|
||
|
<p class="text-center">
|
||
|
<a href="<%= prev_page_path(@conn, @items) %>" class="pagination-link">Newer</a>
|
||
|
</p>
|
||
|
<% end %>
|
||
|
|
||
|
<table class="table table-striped">
|
||
|
<tbody>
|
||
|
<%= for item <- @items do %>
|
||
|
<tr <%= if item.read do %>class="item-read"<% end %>>
|
||
|
<td>
|
||
|
<a href="<%= Routes.item_path(@conn, :show, item.id) %>">
|
||
|
<%= item.title || "(Untitled)" %>
|
||
|
</a>
|
||
|
</td>
|
||
|
<td>
|
||
|
<a href="<%= Routes.feed_path(@conn, :show, item.feed.id) %>">
|
||
|
<%= if item.feed.favicon do %>
|
||
|
<img src="<%= item.feed.favicon %>" alt="<%= item.feed.title %> favicon" class="favicon">
|
||
|
<% end %>
|
||
|
<%= item.feed.title || "(Untitled)" %>
|
||
|
</a>
|
||
|
</td>
|
||
|
<td>
|
||
|
<%= if item.date do %>
|
||
|
<% {:ok, date} = Timex.format(item.date, "{YYYY}-{0M}-{0D} {0h12}:{m} {AM}") %>
|
||
|
<%= date %>
|
||
|
<% end %>
|
||
|
</td>
|
||
|
</tr>
|
||
|
<% end %>
|
||
|
</tbody>
|
||
|
</table>
|
||
|
|
||
|
<%= unless is_nil(next_page_path(@conn, @items)) do %>
|
||
|
<p class="text-center">
|
||
|
<a href="<%= next_page_path(@conn, @items) %>" class="pagination-link">Older</a>
|
||
|
</p>
|
||
|
<% end %>
|