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

{% block body %}

  <h1>hello world</h1>

  <ul>
    {% for filename, post in posts %}
      <li>{{ post.data.get('title') }}</li>
    {% endfor %}
  </ul>

{% endblock %}