-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathhome.html
41 lines (36 loc) · 1.1 KB
/
home.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
40
41
---
layout: default
---
<div class="home">
{%- if page.title -%}
<h1 class="page-heading">{{ page.title }}</h1>
{%- endif -%}
{{ content }}
{%- if site.posts.size > 0 -%}
<h2 class="post-list-heading">{{ page.list_title | default: "Toute l'actualité de DossierSCO" }}</h2>
{%- for post in site.posts -%}
<h3>{{ post.title | escape }}</h3>
{% assign m = post.date | date: "%-m" %}
{{ post.date | date: "%-d" }}
{% case m %}
{% when '1' %}Janvier
{% when '2' %}Fevrier
{% when '3' %}Mars
{% when '4' %}Avril
{% when '5' %}Mai
{% when '6' %}Juin
{% when '7' %}Juillet
{% when '8' %}Août
{% when '9' %}Septembre
{% when '10' %}Oktobre
{% when '11' %}Novembre
{% when '12' %}Décembre
{% endcase %}
{{ post.date | date: "%Y" }}
{%- if site.show_excerpts -%}
{{ post.excerpt }}
<p><a href="{{ post.url | relative_url }}">Lire la suite...</a>
{%- endif -%}
{%- endfor -%}
{%- endif -%}
</div>