summaryrefslogtreecommitdiff
path: root/index.html
blob: 020966b8e8b76c77a22b51554de245cffe834aa0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
---
title: archives
layout: default
---

<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>

<ul class="articles">

{% 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>