kissingcomputer/app/views/articles/show.html.erb
2026-01-10 16:17:07 +00:00

37 lines
674 B
Text

<section class="article">
<%= link_to 'Back', articles_path %><br>
<% if current_user %>
<%= link_to 'Edit', edit_article_path(@article) %>
<% end %>
<br>
<%= image_tag @article.icon_image if @article.icon_image.attached? %>
<section class="inner"><p>
<strong>Name:</strong>
<%= @article.title %>
</p>
<hr>
<p>
<%= @article.text %>
</p>
<p>
<% if @article.music.present? %>
<strong>Currently Listening To...:</strong>
<%= @article.music %>
</p>
<% end %>
<% if @article.mood.present? %>
<p>
<strong>Current Mood:</strong>
<%= @article.mood %>
</p>
<% end %>
</section>
<hr>
<%= link_to 'Back', articles_path %>