kissingcomputer/app/views/posts/show.html.erb
2026-02-21 06:49:36 +00:00

30 lines
551 B
Text

<a href="/blogmap">Back</a><br>
<%= image_tag @post.icon_image if @post.icon_image.attached? %>
<section class="inner"><p>
<strong>Title:</strong>
<%= @post.post_title %>
</p>
<p>
<strong></strong>
<%= @post.text %>
</p>
<p>
<% if @post.music.present? %>
<strong>Currently Listening To...:</strong>
<%= @post.music %>
<% end %>
</p>
<% if @post.mood.present? %>
<p>
<strong>Current Mood:</strong>
<%= @post.mood %></p>
<% end %>
<hr>
<div id="c_widget"></div>
<script src="/comment-widget.js"></script>
</section>