2019-04-01 16:24:22 +00:00
|
|
|
<h1>
|
2019-10-31 21:43:15 +00:00
|
|
|
<a href="<%= @item.url %>" target="_blank" rel="noopener noreferrer"><%= @item.title || "(Untitled)" %></a>
|
2019-04-01 16:24:22 +00:00
|
|
|
</h1>
|
|
|
|
|
2019-11-10 16:53:45 +00:00
|
|
|
<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 22:22:35 +00:00
|
|
|
<% end %>
|
2019-11-10 16:53:45 +00:00
|
|
|
</div>
|
2019-02-11 22:22:35 +00:00
|
|
|
|
2019-04-01 16:24:22 +00:00
|
|
|
<article class="mt-4">
|
2019-02-11 22:22:35 +00:00
|
|
|
<%= raw(@item.content) %>
|
2019-10-31 17:49:35 +00:00
|
|
|
</article>
|