forked from plume/documentation
23 lines
No EOL
585 B
Text
23 lines
No EOL
585 B
Text
---
|
|
title: Plume documentation
|
|
show_links: yes
|
|
---
|
|
|
|
<h1>Topics</h1>
|
|
|
|
<div class="cards">
|
|
<% sitemap.resources
|
|
.select{ |p| p.path =~ /\.html/ && p.path != "index.html" && p.url.chomp('/').split('/').size == 2 }
|
|
.sort{ |a, b| a.data.title <=> b.data.title }
|
|
.sort{ |a, b| -(a.data.priority || 0) <=> -(b.data.priority || 0) }
|
|
.each do |res|
|
|
%>
|
|
<article>
|
|
<i data-feather="<%= res.data.icon %>"></i>
|
|
<h2>
|
|
<a href="<%= res.url %>"><%= res.data.title %></a>
|
|
</h2>
|
|
<p><%= res.data.summary %></p>
|
|
</article>
|
|
<% end %>
|
|
</div> |