aboutsummaryrefslogtreecommitdiff
path: root/_layouts/articles.html
diff options
context:
space:
mode:
Diffstat (limited to '_layouts/articles.html')
-rw-r--r--_layouts/articles.html12
1 files changed, 12 insertions, 0 deletions
diff --git a/_layouts/articles.html b/_layouts/articles.html
new file mode 100644
index 0000000..970a0af
--- /dev/null
+++ b/_layouts/articles.html
@@ -0,0 +1,12 @@
+---
+layout: page
+---
+
+{{ content }}
+<ul>
+{% for post in site.posts %}
+ <li>
+ <a href="{{ post.url | relative_url }}">{{ post.title | escape }}</a>
+ </li>
+{% endfor %}
+</ul>