aboutsummaryrefslogtreecommitdiffstats
path: root/src/blog.njk
blob: 9bd2a056089a7d2b02c4db0ca16902730b3ebf0b (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>