-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
39 lines (38 loc) · 1 KB
/
index.html
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
28
29
30
31
32
33
34
35
36
37
38
39
---
layout: default_with_pagination
---
{% for post in paginator.posts %}
{% assign author_name = post.author.display_name %}
<div class="article">
<div class="well">
<h1><a href="{{ site.baseurl}}{{ post.url }}">{{ post.title }}</a></h1>
<p>
le
{% assign m = post.date | date: "%-m" %}
{{ post.date | date: "%-d" }}
{% case m %}
{% when '1' %}janvier
{% when '2' %}février
{% when '3' %}mars
{% when '4' %}avril
{% when '5' %}mai
{% when '6' %}juin
{% when '7' %}juillet
{% when '8' %}août
{% when '9' %}septembre
{% when '10' %}octobre
{% when '11' %}novembre
{% when '12' %}décembre
{% endcase %}
{{ post.date | date: "%Y" }}, par <span class="author"><a href="{{ site.baseurl }}/author/{{ site.data.authors[author_name].short }}/">{{ author_name }}</a></span>
</p>
<div class="content">
{% if forloop.index == 1 %}
{{ post.content }}
{% else %}
{{ post.excerpt }}
{% endif %}
</div>
</div>
</div>
{% endfor %}