From 9fe2ac2521294d97cc7273a8ba0044943896d50f Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Thu, 4 Dec 2014 20:02:23 -0800 Subject: Update the theme. Simpler and lighter theme. Not perfect yet, there's still more work to do on the resume page and a few other things to fix (images in post, etc). --- articles/index.html | 35 +++++++++++++++++++++++------------ 1 file changed, 23 insertions(+), 12 deletions(-) (limited to 'articles') diff --git a/articles/index.html b/articles/index.html index ccb2633..5a7a0d7 100644 --- a/articles/index.html +++ b/articles/index.html @@ -3,15 +3,26 @@ layout: static title: Articles --- - +

lumberjaph.net

+ +{% for post in site.posts reverse %} + + {% capture date %}{{ post.date }}{% endcapture %} + {% capture this_year %}{{ date | date: "%Y" }}{% endcapture %} + + {% unless year == this_year %} + {% assign year = this_year %} + {% unless forloop.first %} + + {% endunless %} +

{{ date | date: "%Y" }}

+ {% endunless %} + +
+

{{post.title}}

+
+ // {{ date | date: "%b %e " }}{{ post.summary }} +
+
+ +{% endfor %} -- cgit v1.2.3