20 lines
372 B
Markdown
20 lines
372 B
Markdown
|
|
---
|
||
|
|
layout: plain.njk
|
||
|
|
title: "blog"
|
||
|
|
permalink: /boring/blog/
|
||
|
|
---
|
||
|
|
|
||
|
|
# Blog
|
||
|
|
|
||
|
|
{% if collections.posts.length %}
|
||
|
|
{% for post in collections.posts %}
|
||
|
|
- [{{ post.data.title }}]({{ post.url }}) — {{ post.date | readableDate }}{% if post.data.tags %} `{{ post.data.tags | join(', ') }}`{% endif %}
|
||
|
|
{% endfor %}
|
||
|
|
{% else %}
|
||
|
|
*(no posts yet)*
|
||
|
|
{% endif %}
|
||
|
|
|
||
|
|
---
|
||
|
|
|
||
|
|
[← back](/boring/)
|