summaryrefslogtreecommitdiff
path: root/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 /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 'index.html')
-rw-r--r--index.html21
1 files changed, 13 insertions, 8 deletions
diff --git a/index.html b/index.html
index b1093d8..020966b 100644
--- a/index.html
+++ b/index.html
@@ -1,16 +1,21 @@
---
-title: lumberjaph.net
+title: archives
layout: default
---
-{% for post in site.posts limit:1 %}
+<p style="font-size: 36px; line-height:46px; font-weight: bold;">
+ Hi! My name is <a href="/about/">Franck Cuny</a> and this is my personal space, welcome!
+</p>
- <header>
- <h1><a href="{{ post.url }}">{{ post.title }}</a></h1>
- </header>
+<ul class="articles">
- <section>
- <div id="entry"> {{ post.content }} </div>
- </section>
+{% for post in site.posts reverse %}
+
+ <li class="article">
+ <div class="article-date">{{post.date | date: "%Y.%m.%d"}}</div>
+ <a href="{{ root_url }}{{ post.url}}">{{post.title}}</a>
+ </li>
{% endfor %}
+
+</ul>