This repository has been archived by the owner on May 4, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
96 lines (71 loc) · 2.43 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
---
date: "2021-04-08"
description: Validations et perspectives de l’équipe Canada.ca.
lang: fr
layout: blog
title: Blogue de Canada.ca
---
<!--/* Hide Nav; Hide Right Rail /*-->
<main role="main" property="mainContentOfPage" class="container">
<h1 property="name" id="wb-cont" dir="ltr">
Blogue de Canada.ca</h1>
<p>Validations et perspectives de l’équipe Canada.ca.</p>
<h2 class="wb-inv">Nouveaux articles</h2>
<!-- Main loop of articles -->
<div class="row">
<div class="wb-eqht">
{% for post in paginator.posts %}
<section class="col-md-7 col-sm-8 col-xs-12 blog-list">
<h3><a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a></h3>
<p>{{ post.description }}</p><p><small>[{{ post.date | date: "%F" }}]</small> </p>
</section>
<section class="col-md-5 col-sm-4 hidden-xs blog-list blog-photo">
<a class="post-link" href="{{ post.url | prepend: site.baseurl }}"> <img src="/thumbs/{{ post.date | date: "%F" }}.png" alt="{{ post.alt }}" class="img-responsive thumbnail"></a>
</section>
{% endfor %}
<div class="clearfix"></div>
<!-- end main loop of articles -->
<!-- Pagination links "Prev 1, 2, 3 Next" style -->
<div class="row">
{% if paginator.total_pages > 1 %}
<div class="pagination">
{% if paginator.previous_page %}
<a href="{{ paginator.previous_page_path | relative_url }}">Précédent</a>
{% else %}
<!-- <span></span> -->
{% endif %}
{% for page in (1..paginator.total_pages) %}
{% if page == paginator.page %}
<span>{{ page }}</span>
{% elsif page == 1 %}
<a href="{{ paginator.previous_page_path | relative_url }}">{{ page }}</a>
{% else %}
<a href="{{ site.paginate_path | relative_url | replace: ':num', page }}">{{ page }}</a>
{% endif %}
{% endfor %}
{% if paginator.next_page %}
<a href="{{ paginator.next_page_path | relative_url }}">Suivant</a>
{% else %}
<!-- <span></span> -->
{% endif %}
</div>
{% endif %}
</div>
<!-- end of pagination links -->
<div>
<div class="col-sm-8">
<section>
<h2>Suivez</h2>
<ul class="mrgn-tp-lg">
<li>
<a href="https://blogue.canada.ca/flux.xml"><img src="/images/feed-icon-14x14.png" alt="ATOM" class="mrgn-rght-sm">ATOM</a>
</li>
<li>
<a href="https://blogue.canada.ca/pages/inscrire.html">Abonnez-vous à notre liste d’envoi</a>
</li>
</ul>
</section>
</div>
</div>
</div>
<div class="clearfix"></div>