blob: d2ac3e7241374b0e05ca3a1b232a8c72d7b49522 (
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
---
<ul style="list-style-type:none">
{% for post in collections.posts %}
<li>
<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>
</li>
{% endfor %}
</ul>
|