all repos — archive/homestead @ acd2fe16e6323fdf6b6a10f05603c94b3a535fd7

My future indieweb platform

Add some basic HTML
Alan Pearce alan@alanpearce.eu
Mon, 19 Jun 2017 21:18:30 +0200
commit

acd2fe16e6323fdf6b6a10f05603c94b3a535fd7

parent

834b7e0cca76a1e5750434d0db0d29b14d4a7cc4

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

jump to
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 %}