Sha256: 55c140ec6f30e0b0146981aea2abe37dca0904ce57efa353de9c220052878c8b

Contents?: true

Size: 811 Bytes

Versions: 4

Compression:

Stored size: 811 Bytes

Contents

<% title @post.title %>
<% description @post.description.to_s %>

<%= content_tag(:article, id: "blogit_post_#{@post.id}", class: "blogit_post") do %>

  
  <%# Render the header for this blog post %>
  <%= render "blogit/posts/post_head", post: @post %>

  <%= render "blogit/posts/blogger_information", post: @post %>

  <%# Render the body of this blog post (as Markdown) %>
  <%= format_content(@post.body) %>

  <%# Render info about the person who wrote this post %>
  <%= share_bar_for_post @post %>

  <%# Render the no. of comments %>
  <%= render "blogit/posts/comments_count",
    post: post if defined?(show_comments_count) and show_comments_count %>

  <%= render "blogit/posts/tags", post: @post %>
  <%= render "blogit/posts/related", post: @post %>

  <%= comments_for_post @post %>

<% end %>

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
blogit-1.1.2 app/views/blogit/posts/show.html.erb
blogit-1.1.1 app/views/blogit/posts/show.html.erb
blogit-1.1.0 app/views/blogit/posts/show.html.erb
blogit-1.0.0 app/views/blogit/posts/show.html.erb