22 lines
712 B
Elixir
Raw Normal View History

2019-04-01 12:24:22 -04:00
<h1>
<a href="<%= @item.url %>" target="_blank" rel="noopener noreferrer"><%= @item.title || "(Untitled)" %></a>
2019-04-01 12:24:22 -04:00
</h1>
<div class="item-controls">
<a href="<%= Routes.feed_path(@conn, :show, @item.feed_id) %>" class="mr-2"><%= @item.feed.title %></a>
<%= if @item.read do %>
<%= form_tag Routes.item_path(@conn, :unread, @item.id), method: :post do %>
<%= submit "Mark as Unread", class: "btn btn-sm btn-secondary" %>
<% end %>
<% else %>
<%= form_tag Routes.item_path(@conn, :read, @item.id), method: :post do %>
<%= submit "Mark as Read", class: "btn btn-sm btn-secondary" %>
<% end %>
2019-02-11 17:22:35 -05:00
<% end %>
</div>
2019-02-11 17:22:35 -05:00
2019-04-01 12:24:22 -04:00
<article class="mt-4">
2019-02-11 17:22:35 -05:00
<%= raw(@item.content) %>
</article>