diff options
| author | Franck Cuny <franck.cuny@gmail.com> | 2014-02-01 10:13:47 -0800 |
|---|---|---|
| committer | Franck Cuny <franck.cuny@gmail.com> | 2014-02-01 10:15:19 -0800 |
| commit | d248814b784d71ce7ed6872cc2832138b5b334e9 (patch) | |
| tree | fe8f6d834c310aed6515fe5c58c8dfadcdda11e7 /articles/index.html | |
| parent | limit to only 5 articles on / (diff) | |
| download | lumberjaph-d248814b784d71ce7ed6872cc2832138b5b334e9.tar.gz | |
page with all the articles
Diffstat (limited to '')
| -rw-r--r-- | articles/index.html | 17 |
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> |
