]> Witch of Git - web/blog/blob - index.njk
Add a section on the occurs-check
[web/blog] / index.njk
1 ---
2 layout: "layouts/layout.njk"
3 ---
4 <ul class="ls-none">
5 {% for post in collections.posts | reverse %}
6 <li>
7 <h2><a class="c-sun" href="{{ post.url }}">{{ post.data.title }}</a></h2>
8 <i class="dim">{{ post.date | date("YYYY-MM-DD") }}</i>
9 {% if post.data.summary %}
10 <p>{{ post.data.summary | markdown | safe }}</p>
11 {% endif %}
12 </li>
13 {% endfor %}
14 </ul>