From 8ddf2e94df70707b458528a437759b96046d3e01 Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Tue, 26 Nov 2013 10:36:10 -0800 Subject: Huge update. Moved all posts from textile to markdown. Updated all the CSS and styles. Added a new page for the resume. --- _layouts/post.html | 40 +++++++++++++++++++++------------------- 1 file changed, 21 insertions(+), 19 deletions(-) (limited to '_layouts/post.html') diff --git a/_layouts/post.html b/_layouts/post.html index 3422dbe..47e12a4 100644 --- a/_layouts/post.html +++ b/_layouts/post.html @@ -1,28 +1,30 @@ --- layout: default --- -

{{ page.title }}

+

{{ page.title }}

-

{{ page.date | date_to_string }}

+{% if page.previous.url %} +

«


+{% endif %} +{% if page.next.url %} +

»

+{% endif %} -{{ content }} +
+ {{ content }} -
+

+ {% if page.previous.url %} + « {{page.previous.title}} | + {% endif %} -

-

Read More

-
    - {% for post in site.related_posts %}{% if post.url != page.url %} -
  • - {{ post.title }} - ({{ post.date | date_to_string }}) -
  • - {% endif %}{% endfor %} -
-
+ {{ page.date | date_to_string }} + + {% if page.next.url %} + | {{page.next.title}} » + {% endif %} +

-
+
- +{% include footer.html %} -- cgit v1.2.3