From d4e1a0673842b6e3b3218d86cab79709ea458861 Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Fri, 10 Jan 2014 17:43:59 -0800 Subject: Rewrite the index and add a page for codex. --- _includes/footer.html | 9 +++++---- codex.html | 19 +++++++++++++++++++ index.html | 48 +++++++++++++++--------------------------------- list.md | 20 -------------------- 4 files changed, 39 insertions(+), 57 deletions(-) create mode 100644 codex.html delete mode 100644 list.md diff --git a/_includes/footer.html b/_includes/footer.html index 0753098..2847fae 100644 --- a/_includes/footer.html +++ b/_includes/footer.html @@ -1,7 +1,8 @@ diff --git a/codex.html b/codex.html new file mode 100644 index 0000000..29c19d6 --- /dev/null +++ b/codex.html @@ -0,0 +1,19 @@ +--- +layout: static +title: Codex +--- + +

Codex

+ +
+ +
diff --git a/index.html b/index.html index 60efc1e..884466e 100644 --- a/index.html +++ b/index.html @@ -1,37 +1,19 @@ --- -layout: default +layout: static +title: Writings --- -{% assign page = site.posts.first %} - - - -

{{ page.title }}

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

«


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

»

-{% endif %} - -
- {{ page.content }} - -

- {% if page.previous.url %} - « {{page.previous.title}} | - {% endif %} - - {{ page.date | date_to_string }} - - {% if page.next.url %} - | {{page.next.title}} » - {% endif %} -

- +

Writings

+ +
+
    + {% for post in site.posts %} + {% unless post.type == "codex" %} +
  • + {{ post.title }} + {{ post.date | date_to_string }} +
  • + {% endunless %} + {% endfor %} +
- -{% include footer.html %} diff --git a/list.md b/list.md deleted file mode 100644 index 18fc7a8..0000000 --- a/list.md +++ /dev/null @@ -1,20 +0,0 @@ ---- -layout: static -title: List of articles ---- - -

Lumberjaph

- -
-

Posts

- -
    - {% for post in site.posts %} -
  • - {{ post.title }} - {{ post.date | date_to_string }} -
  • - {% endfor %} -
- -
-- cgit v1.2.3