summaryrefslogtreecommitdiff
path: root/list.md
diff options
context:
space:
mode:
Diffstat (limited to 'list.md')
-rw-r--r--list.md18
1 files changed, 18 insertions, 0 deletions
diff --git a/list.md b/list.md
new file mode 100644
index 0000000..5354fd1
--- /dev/null
+++ b/list.md
@@ -0,0 +1,18 @@
+---
+layout: static
+title: List of articles
+---
+
+<div id='wrapper'>
+ <h3>Posts</h3>
+
+ <ul>
+ {% for post in site.posts %}
+ <li>
+ <a href="{{ post.url }}">{{ post.title }}</a>
+ <span class="date">{{ post.date | date_to_string }}</span>
+ </li>
+ {% endfor %}
+ </ul>
+
+</div>