basically releasable
This commit is contained in:
parent
04cf8eb646
commit
0314b6a427
41 changed files with 281 additions and 1760 deletions
20
site/index.njk
Normal file
20
site/index.njk
Normal file
|
@ -0,0 +1,20 @@
|
|||
---
|
||||
layout: base
|
||||
title: Home
|
||||
---
|
||||
|
||||
{% for name, collection in collections %}
|
||||
{% if name !== "all" %}
|
||||
<h2>{{name | capitalize }}</h2>
|
||||
<ul>
|
||||
{% for item in collection %}
|
||||
<li>
|
||||
<a href="{{item.url}}">{{item.data.title}}</a>
|
||||
{% if item.data.dateString %}
|
||||
<aside>{{item.data.dateString}}</aside>
|
||||
{% endif %}
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
{% endif %}
|
||||
{% endfor %}
|
Loading…
Add table
Add a link
Reference in a new issue