Skip to content

Instantly share code, notes, and snippets.

@hogihung
hogihung / show.html.erb
Created March 24, 2014 01:14
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? %>