summaryrefslogtreecommitdiffstats
path: root/blog.html
blob: a584e59cbbcefc95109158af9acb0860922197aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{% meta %}
  title: Blog
  top_link: 1
{% endmeta %}

{% block content %}

<h2>Latest posts</h2>

{% for post in site.posts %}
<p>
  <a href="{{ post.get_url() }}">{{ post.title }}</a>
  -
  {{ post.date.strftime('%Y, %B %d') }}
</p>
{% endfor %}

{% endblock %}