-
Notifications
You must be signed in to change notification settings - Fork 9
/
fr.html
59 lines (52 loc) · 1.9 KB
/
fr.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
---
layout: default
draft: false
---
<div class="section">
<section class="fixed v80" style='display: block; background-image: url("assets/images/kids.png");'>
<div class="container container-wide container-header">
<br><br>
<div class="white-text z-depth-5 radius-border opacity-background title-shadow">
<h1 class="header center">{{ site.tagline }}</h1>
<div class="row center">
<h5 class="header col s12 light">{{ site.nutshell }}</h5>
</div>
</div>
</div>
</section>
<section class="v100">
<div class="container container-wide">
<p>
{{ site.description }}
</p>
{% for post in site.posts reversed %}
{% unless post.hidden %}
{% if post.language == "fr" %}
<ul class="collection with-header">
<li class="collection-header">
<div>
<a class="post-link teal-text post-title" href="{{ post.url }}">{{ post.title }}</a>
</div>
</li>
</ul>
{% endif %}
{% endunless %}
{% endfor %}
</div>
</section>
<div class="containter containter-wide">
<ul class="pagination center-align teal-text">
{% if paginator.previous_page %}
<li class="waves-effect"><a href="{{ paginator.previous_page_path | site.github.url}}"><i class="material-icons">chevron_left</i></a></li>
{% else %}
<li class="waves-effect"><i class="material-icons">chevron_left</i></li>
{% endif %}
<li class="page_number">Page: {{ paginator.page }} of {{ paginator.total_pages }}</li>
{% if paginator.next_page %}
<li class="waves-effect"><a href="{{ paginator.next_page_path | site.github.url }}" ><i class="material-icons">chevron_right</i></a></li>
{% else %}
<li class="waves-effect"><i class="material-icons">chevron_right</i></li>
{% endif %}
</ul>
</div>
</div>