Skip to content

Instantly share code, notes, and snippets.

@beaugaines
Created August 17, 2015 20:24
Show Gist options
  • Save beaugaines/ab3e416f2600b734f75f to your computer and use it in GitHub Desktop.
Save beaugaines/ab3e416f2600b734f75f to your computer and use it in GitHub Desktop.
<h1><%= markdown_to_html @post.title %></h1>
<div class="row">
<div class="col-md-8">
<small>
<%= image_tag(@post.user.avatar.tiny.url) if @post.user.avatar? %>
submitted <%= time_ago_in_words(@post.created_at) %> ago by
<%= @post.user.name %>
</small>
<p><%= markdown_to_html @post.body %></p>
<% @comments.each do |comment| %>
<%= comment.body %></p>
<% end %>
<%= render partial: 'comments/form', locals: {post: @post, comment: @comment} %>
</div>
<div class="col-md-4">
<% if policy(@post).edit? %>
<%= link_to "Edit", edit_topic_post_path(@topic,@post), class: 'btn btn-success' %>
<% end %>
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment