25 lines
716 B
Text
25 lines
716 B
Text
<div class="mainaboutbox">
|
|
<% if authenticated? %>
|
|
<%= link_to 'New Scrap', new_scrap_path %>
|
|
<% else %>
|
|
.
|
|
<% end %><br><br>
|
|
<h1>SCRAPBOOK</h1>
|
|
random thoughts longer than miniblog length will go here :)<br><br>
|
|
<hr>
|
|
<% @scraps.each do |scrap| %>
|
|
|
|
(<%= link_to 'Read', scrap_path(scrap) %>) <br>
|
|
|
|
<%= truncate(scrap.text.to_plain_text, length: 350) %> | <%= time_ago_in_words(scrap.created_at) %> ago
|
|
<br>
|
|
<% 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 %><br><br><hr>
|
|
<% end %>
|