iamdoubz-update-from-src-patch/source/index.html.erb
Baptiste Gelez aa340a4b85 Move contribution guides to the documentation
To have everything in one place, and to take advantage of the in-context of the documentation.
2019-05-29 14:49:51 +01:00

23 lines
586 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>