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