summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFranck Cuny <franck.cuny@gmail.com>2014-02-01 10:13:47 -0800
committerFranck Cuny <franck.cuny@gmail.com>2014-02-01 10:15:19 -0800
commitd248814b784d71ce7ed6872cc2832138b5b334e9 (patch)
treefe8f6d834c310aed6515fe5c58c8dfadcdda11e7
parentlimit to only 5 articles on / (diff)
downloadlumberjaph-d248814b784d71ce7ed6872cc2832138b5b334e9.tar.gz
page with all the articles
-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>