summary refs log tree commit diff stats
path: root/src/views/index.njk
blob: 1bf275ead4d40ba93d2416c7f2387339cc5f7126 (plain)
1
2
3
4
5
6
7
8
9
10
11
{% extends "layouts/main.njk" %}

{% block body %}

hello world

{% for filename, post in posts %}
  {{ post.data.get('title') }}
{% endfor %}

{% endblock %}