<%= link_to 'Back', member_blog_posts_path %>
<%= image_tag @post.icon_image if @post.icon_image.attached? %>

Post Title: <%= @post.post_title %>

Content: <%= @post.text %>

Currently Listening To...: <%= @post.music %>

Current Mood: <%= @post.mood %>


Comments

<%= render @post.comments %> add a comment... <%= form_with( model: [@post.blog.member, @post.blog, @post, Comment.new], local: true ) do |form| %> <%= form.label :commenter %>
<%= form.text_field :commenter %>
<%= form.label :body %>
<%= form.rich_text_area :body %> <%= form.submit %> <% end %>