diff options
| author | Franck Cuny <franckcuny@gmail.com> | 2016-06-19 13:56:53 -0700 |
|---|---|---|
| committer | Franck Cuny <franckcuny@gmail.com> | 2016-06-19 13:56:53 -0700 |
| commit | 5f7bbbd1d8bb0434140213ba560f3f2fc6c89ef0 (patch) | |
| tree | a0040112e26d4abb7b4375933ebddbe40c9e31be /index.html | |
| parent | Slightly bigger font and use different font family (diff) | |
| download | lumberjaph-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.html | 21 |
1 files changed, 13 insertions, 8 deletions
@@ -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> |
