summaryrefslogtreecommitdiff
path: root/articles/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'articles/index.html')
-rw-r--r--articles/index.html17
1 files changed, 17 insertions, 0 deletions
diff --git a/articles/index.html b/articles/index.html
new file mode 100644
index 0000000..ccb2633
--- /dev/null
+++ b/articles/index.html
@@ -0,0 +1,17 @@
+---
+layout: static
+title: Articles
+---
+
+<ul class="post-listing">
+ {% for post in site.posts %}
+ <li>
+ <header class="entry-title">
+ <h2>
+ <a href="{{ post.url }}" title="{{ post.title }}">{{ post.title }}</a>
+ </h2>
+ <p class="oneliner">{{ post.summary }}</p>
+ </header>
+ </li>
+ {% endfor %}
+</ul>