iamdoubz-update-from-src-patch/source/index.html.erb

24 lines
586 B
Text
Raw Normal View History

2018-12-08 10:55:08 +00:00
---
2018-12-08 12:05:59 +00:00
title: Plume documentation
2019-02-17 11:32:32 +00:00
show_links: yes
2018-12-08 10:55:08 +00:00
---
<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>
2018-12-08 12:05:59 +00:00
<% end %>
</div>