summary refs log tree commit diff stats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/views/index.njk10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/views/index.njk b/src/views/index.njk
index 1bf275e..e5f4034 100644
--- a/src/views/index.njk
+++ b/src/views/index.njk
@@ -2,10 +2,12 @@
 
 {% block body %}
 
-hello world
+  <h1>hello world</h1>
 
-{% for filename, post in posts %}
-  {{ post.data.get('title') }}
-{% endfor %}
+  <ul>
+    {% for filename, post in posts %}
+      <li>{{ post.data.get('title') }}</li>
+    {% endfor %}
+  </ul>
 
 {% endblock %}