A website template with lots of features, built with ruby on rails.

show.html.erb 520B

123456789101112
  1. <div class="page-header">
  2. <h1><%= @blog_post.title %></h1>
  3. <small><%= t "blog.by" %> <%= @blog_post.author.full_name %>, <%= time_ago_in_words(@blog_post.created_at) %> <%= t "blog.ago" %></small>
  4. </div>
  5. <%= @blog_post.content.html_safe %>
  6. <div style="margin-top: 40px; text-align: center;">
  7. <%= link_to (t "nav.edit"), edit_blog_post_path(@blog_post), :class => 'btn btn-small', :id => ['edit_' + @blog_post.slug] if user_signed_in? %>
  8. <%= link_to (t "nav.back"), blog_path, :class => 'btn btn-small' %>
  9. </div>