30 lines
471 B
Markdown
30 lines
471 B
Markdown
---
|
|
layout: plain.njk
|
|
title: "plain index"
|
|
permalink: /boring/
|
|
---
|
|
|
|
# {{ site.author }}
|
|
|
|
{{ site.tagline }}
|
|
|
|
---
|
|
|
|
## Navigation
|
|
|
|
- [About](/boring/about/)
|
|
- [Projects](/boring/projects/)
|
|
- [Blog](/boring/blog/)
|
|
|
|
## Recent posts
|
|
|
|
{% for post in collections.posts %}
|
|
- [{{ post.data.title }}]({{ post.url }}) — {{ post.date | readableDate }}
|
|
{% endfor %}
|
|
{% if not collections.posts.length %}
|
|
- *(no posts yet)*
|
|
{% endif %}
|
|
|
|
---
|
|
|
|
[← back to the interesting version](/)
|