summaryrefslogtreecommitdiffstats
path: root/blog.html
blob: 5fee95ae0dd6be06aef0f5713cf1fc9e524ec8dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{% meta %}
  title: Blog
  top_link: 2
{% 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 %}