<% if authenticated? %>
<%= link_to 'New Scrap', new_scrap_path %>
<% else %>
.
<% end %>
SCRAPBOOK
random thoughts longer than miniblog length will go here :)
<% @scraps.each do |scrap| %>
(<%= link_to 'Read', scrap_path(scrap) %>)
| | <%= time_ago_in_words(scrap.created_at) %> ago
<%= truncate(scrap.text.to_plain_text, length: 350) %> <% if authenticated? %>
|
<%= link_to 'Edit', edit_scrap_path(scrap) %>
<%= link_to 'Destroy', scrap_path(scrap), data: {
turbo_method: :delete,
turbo_confirm: "Are you sureee?"
} %>
<% else %>
<% end %>
<% end %>