Sha256: ab0392ca9dd14501a087d4e1fffa55b097a97830af8125d10e4bd7ed6a75fcee
Contents?: true
Size: 1.52 KB
Versions: 12
Compression:
Stored size: 1.52 KB
Contents
<div class="container-fluid"> <%= render partial: 'partials/breadcrumb', locals: {breadcrumb: @post.the_breadcrumb} %> <div class="row"> <% if @post_type.the_slug == "page" %> <div class="col-md-12 page-view"> <article class="post-content"> <h1><%= raw @post.the_title %></h1> <div class="item-content"> <%= raw @post.the_content %> </div> <!-- custom fields --> <% if @post.render_fields.present? %> <hr> <h4><%= ct("extra_attributes") %></h4> <%= raw @post.render_fields %> <% end %> </article> </div> <% else %> <div class="col-md-9 post-view"> <article class="post-content"> <h1><%= raw @post.the_title %></h1> <div class="author"> <time datetime=""><%= @post.the_created_at %></time> </div> <div class="item-content"> <%= raw @post.the_content %> </div> </article> <%= render partial: 'partials/comments', locals: {post: @post} if @post.can_commented? %> </div> <div class="col-md-3"> <%= render partial: 'partials/sidebar', locals: {post: @post} %> </div> <% end %> </div> </div>
Version data entries
12 entries across 12 versions & 1 rubygems