Skip to content

Instantly share code, notes, and snippets.

@hogihung
Created March 24, 2014 01:14
Show Gist options
  • Save hogihung/9732551 to your computer and use it in GitHub Desktop.
Save hogihung/9732551 to your computer and use it in GitHub Desktop.
Bloccit Posts#Show
<h1><%= markdown @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 @post.body %></p>
<%= image_tag(@post.image) if @post.image? %>
</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