blob: 9998e7039fd499c83929bae0986f072a9acaf729 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
---
layout: base
title: Blog
---
<div role="feed" aria-busy="false">
{% for post in collections.posts %}
<article aria-posinset="{{loop.index}}" aria-setsize="{{loop.len}}">
<h1>
<a href="{{post.url}}">{{post.data.title}}</a>
</h1>
<small>
<time datetime="{{page.date.toISOString()}}">{{page.date.toDateString()}}</time> - <a rel=author href="{{metadata.author.url}}">{{ metadata.author.name }}</a>
</small>
<p>{{post.data.description}}</p>
</article>
{% endfor %}
</div>
|