forked from nicoespeon/nicoespeon.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patharchive.html
More file actions
27 lines (25 loc) · 899 Bytes
/
archive.html
File metadata and controls
27 lines (25 loc) · 899 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
---
layout: default
permalink: /archive/
title: Archive
---
<p>
Here's the list of all post I wrote here (in both <strong><i class="icon-fr"></i> french</strong> and <strong><i class="icon-en"></i> english</strong>).
</p>
<section>
<ul id="timeline" class="timeline timeline--rev">
{% for post in site.posts %}
<li>
<time class="timeline__time" datetime='{{ post.date | date: "%Y-%m-%d" }}'>
<span class="muted">{{ post.date | date: "%Y" }}</span>
<span>{{ post.date | date: "%d %b" }}</span>
</time>
<div class="timeline__icon icon-{{ post.categories }}"></div>
<a class="timeline__label" href="{{ post.url }}">
<h1>{{ post.title }}</h1>
<p class="brand-face">{{ post.description }}</p>
</a>
</li>
{% endfor %}
</ul>
</section>