Sha256: 42bcf6c9f3fd1ee315250671bd8f8892d5ac9e7afc637336ea232dc486fa8062
Contents?: true
Size: 1.21 KB
Versions: 75
Compression:
Stored size: 1.21 KB
Contents
<article id="post_type-view" class="post_type_<%= @post_type.slug %>"> <%= render partial: 'partials/breadcrumb', locals: {breadcrumb: @post_type.the_breadcrumb } %> <h1><%= @post_type.the_title %> <%= @post_type.the_edit_link %></h1> <div class="content"> <%= raw @post_type.the_content %> </div><br><br> <% if @categories.present? %> <div class="categories_list"> <%= render partial: "partials/categories_list", locals: {categories: @categories} %> </div> <% end %> <div class="row"> <% _tpl = lookup_context.template_exists?("post_types/#{@post_type.the_slug}/post_list_item", nil, true) ? "post_types/#{@post_type.the_slug}/post_list_item" : 'partials/post_list_item' %> <% @posts.each_with_index do |post, index| %> <%#= raw "<div class='clearfix'></div>" if index%3 == 0 && index > 0 %> <%= render partial: _tpl, locals: {post: post.decorate, index: index} %> <% end %> </div> <%= content_tag("div", raw(ct('no_contents_found', default: 'No contents found.')), class: "alert alert-warning") if @posts.empty? %> <%= will_paginate @posts, renderer: BootstrapPagination::Rails if @posts.present? %> </article>
Version data entries
75 entries across 75 versions & 2 rubygems