Add some basic HTML
Alan Pearce alan@alanpearce.eu
Mon, 19 Jun 2017 21:18:30 +0200
1 files changed, 6 insertions(+), 4 deletions(-)
jump to
M src/views/index.njk → src/views/index.njk
@@ -2,10 +2,12 @@ {% extends "layouts/main.njk" %} {% 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 %}