1
0
Fork 0
mirror of https://github.com/fmap/muflax65ngodyewp.onion synced 2024-06-18 09:16:48 +02:00
muflax65ngodyewp.onion/layouts/category.erb

15 lines
361 B
Plaintext
Raw Normal View History

<!-- print all items in a category, nicely formatted -->
<!-- find category index -->
<% cat = @site.category @category %>
<!-- header -->
<h1><%= cat.link %></h1>
<!-- print items in nice list -->
<ul class="table">
<% cat.members.sort_by{|i| i[:date]}.reverse.each do |i| %>
<%= render 'list-item', :item => i, :episteme => true %>
<% end %>
</ul>