all repos — archive/homestead @ acd2fe16e6323fdf6b6a10f05603c94b3a535fd7

My future indieweb platform

Add some basic HTML

Alan Pearce
commit

acd2fe16e6323fdf6b6a10f05603c94b3a535fd7

parent

834b7e0cca76a1e5750434d0db0d29b14d4a7cc4

1 file changed, 6 insertions(+), 4 deletions(-)

changed files
M src/views/index.njksrc/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 %}