aboutsummaryrefslogtreecommitdiffstats
path: root/blog/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'blog/index.html')
-rw-r--r--blog/index.html15
1 files changed, 15 insertions, 0 deletions
diff --git a/blog/index.html b/blog/index.html
new file mode 100644
index 000000000..871987aca
--- /dev/null
+++ b/blog/index.html
@@ -0,0 +1,15 @@
+---
+layout: page
+title: Blog
+---
+
+<h1>Blog</h1>
+
+<ul class="list-of-blog-posts">
+{% for post in site.posts %}
+ <li class="listed-blog-post">
+ <h2 class="blog-title"><a href="{{ post.url }}">{{ post.title }}</a> <small class="meta meta--date">{{ post.date | date: "%d %B %Y" }}</small></h2>
+ {{ post.content }}
+ </li>
+{% endfor %}
+</ul>