blob: 532d977203e934ada2cef100be77581e38d26f0e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
---
layout: base.njk
title: Blog
tags:
- navigator
---
<div role="feed" aria-busy="false">
{% for post in collections.posts %}
<article aria-posinset="{{ loop.index }}" aria-setsize="{{ loop.size }}">
<h1>
<a href="{{ post.url | url }}">{{ post.data.title }}</a>
</h1>
<small>
<p>{{ metadata.author.name }} - {{ post.data.date | datefmt }}<p>
</small>
<p>{{ post.data.description }}</p>
</article>
{% endfor %}
</div>
|