-
Notifications
You must be signed in to change notification settings - Fork 7
/
actualites-en.html
47 lines (40 loc) · 1.27 KB
/
actualites-en.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
---
layout: default-en
title: News
class: actualites
lang: en
ref: actualites
---
<header class="header header--actualites">
{% include navigation.html %}
<div class="header__content">
<div class="header__content">
<h1 class="page__title">Follow Geotrek's news</h1>
<h2 class="page__subtitle">Stay in touch with enhancements and partnerships</h2>
</div>
</div>
</header>
<section>
<div class="grid actualites__breadcrumb">
<h3 class="grid__item">
<a href="{{ site.baseurl }}/index-en.html">Home</a> > All Geotrek's news</h3>
</div>
<div class="grid actualites__items">
{% assign posts=site.posts | where:"lang", page.lang %}
{% for post in posts %}
<div class="grid__item grid__item--50 grid__item--actualite">
<a href="{{ post.url | absolute_url }}" title="{{ post.title }}">
<h3 class="title title--medium">{{ post.title }}</h3>
</a>
<p class="subtitle">{% include date.html date=post.date %}{{ month }} {{ year }}</p>
{% if post.excerpt %}
{{ post.excerpt }}
{% endif %}
{% if post.image %}
<img src="{{ site.baseurl }}/{{ post.image }}" style="width: 100%; height: auto">
{% endif %}
</div>
{% endfor %}
</div>
</section>
{% include logos-parcs.html %}