11 lines
No EOL
233 B
Text
11 lines
No EOL
233 B
Text
---
|
|
title: 'Blog'
|
|
permalink: "/blog/"
|
|
---
|
|
|
|
<h1>Blog</h1>
|
|
{% for post in collections.blogpost | reverse %}
|
|
<div>
|
|
{{post.data.date | dateLocale}} - <a href="{{ post.data.permalink | safe }}">{{post.data.title}}</a>
|
|
</div>
|
|
{% endfor %} |