27 lines
495 B
Text
27 lines
495 B
Text
<%= link_to 'Back', member_blog_posts_path %><br>
|
|
<%= image_tag @post.icon_image if @post.icon_image.attached? %>
|
|
<section class="inner"><p>
|
|
<strong>Post 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>
|
|
</section>
|
|
|
|
|