<% 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) %>)
<%= truncate(scrap.text.to_plain_text, length: 350) %> | <%= time_ago_in_words(scrap.created_at) %> ago
<% 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 %>