blob: f4b9ad5bd0baf25df915a31760b229f16d3567bb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
---
layout: base.njk
title: Blog
tags:
- navigator
---
{% for post in collections.posts %}
<article>
<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 %}
|