Sha256: d18f6b2c77fbe7b273eebb9868f7f6400e6aa1d5055df4a53ee8ac94b4ef8c06
Contents?: true
Size: 991 Bytes
Versions: 75
Compression:
Stored size: 991 Bytes
Contents
<article id="tag-view" class="tag_<%= @post_tag.slug %>"> <%= render partial: 'partials/breadcrumb', locals: {breadcrumb: @post_tag.the_breadcrumb } %> <h1><%= @post_tag.the_title %></h1> <div class="content"> <%= raw @post_tag.the_content %> </div><br><br> <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