forked from BedrockStreaming/tech.bedrockstreaming.com
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (27 loc) · 1.02 KB
/
index.html
File metadata and controls
33 lines (27 loc) · 1.02 KB
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
---
layout: page
title:
description: "Blog de la direction technique d'M6Web Lyon"
tags: []
---
<ul class="post-list">
{% for post in paginator.posts %}
<li><article><a href="{{ site.url }}{{ post.url }}">{{ post.title }} {% if post.language == 'en' %} <img src="{{ site.BASE_PATH }}/images/flag_en.png" alt="English version" />{% endif %}<span class="entry-date"><time datetime="{{ post.date | date_to_xmlschema }}">{{ post.date | date: "%d %B, %Y" }}</time></span></a></article></li>
{% endfor %}
</ul>
<ul class="pager">
{% if paginator.previous_page %}
<li class="previous">
{% if paginator.previous_page == 1 %}
<a href="{{ site.BASE_PATH }}/">← Posts récent</a>
{% else %}
<a href="{{ site.BASE_PATH }}/page{{ paginator.previous_page }}">← Posts récent</a>
{% endif %}
</li>
{% endif %}
{% if paginator.next_page %}
<li class="next">
<a href="{{ site.BASE_PATH }}/page{{ paginator.next_page }}">Posts ancien →</a>
</li>
{% endif %}
</ul>