Sha256: be4148f29dc35838b07dfbd22c1dbdc7726cf2d0fea5fc8892da5e1971d99e8d
Contents?: true
Size: 581 Bytes
Versions: 33
Compression:
Stored size: 581 Bytes
Contents
<%- set_title "#{Blog.first.title}: #{@blog_category ? @blog_category.name : ''}" @meta_description = @blog_category.description -%> <%- unless @blog_category.all_posts.empty? -%> <ul> <%- @blog_category.all_posts.each do |post| -%> <li> <%= link_to post.title, post.path -%><br /> <%= post.summary -%> </li> <%- end -%> </ul> <%- end -%> <%- unless @blog_category.children.empty? -%> <p>Subcategories</p> <ul> <%- @blog_category.children.each do |category| -%> <li><%= link_to category.name, category.url -%></li> <%- end -%> </ul> <%- end -%>
Version data entries
33 entries across 33 versions & 1 rubygems