summaryrefslogtreecommitdiff
path: root/articles/index.html
diff options
context:
space:
mode:
authorFranck Cuny <franckcuny@gmail.com>2016-06-19 13:56:53 -0700
committerFranck Cuny <franckcuny@gmail.com>2016-06-19 13:56:53 -0700
commit5f7bbbd1d8bb0434140213ba560f3f2fc6c89ef0 (patch)
treea0040112e26d4abb7b4375933ebddbe40c9e31be /articles/index.html
parentSlightly bigger font and use different font family (diff)
downloadlumberjaph-5f7bbbd1d8bb0434140213ba560f3f2fc6c89ef0.tar.gz
Simplification of the layout.
Nicer font for the text. Move the footer into the container div, so that I don't have to maintain different ratio in different places. The index page list all the articles, so I can remove the page /articles.
Diffstat (limited to '')
-rw-r--r--articles/index.html23
1 files changed, 0 insertions, 23 deletions
diff --git a/articles/index.html b/articles/index.html
deleted file mode 100644
index ff8a8cf..0000000
--- a/articles/index.html
+++ /dev/null
@@ -1,23 +0,0 @@
----
-title: archives
-layout: default
----
-
-{% 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 %}
- </section>
- {% endunless %}
- <section class="archives"><h2>{{ date | date: "%Y" }}</h2>
- {% endunless %}
-
- <article>
- <a href="{{ root_url }}{{ post.url }}">{{post.title}}</a>
- </article>
-
-{% endfor %}