-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpress.html
38 lines (32 loc) · 1.15 KB
/
press.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
---
layout: layout.html
title: On parle de nous /
currSection: press
---
<article class="page-body">
<h2>On parle de nous</h2>
<h3>Pour la Presse</h3>
<dl class="press">
<div><dt><a href="https://docs.google.com/document/d/e/2PACX-1vQAuQ3WYqRy2zZEn9PyQzjQm1Rzpib-zkhIdJLFQXsGcgOGO5didq_enLaBmx_olOHvU4rpl8nkhunO/pub">Communiqué de Presse</a></dt>
<dd>Publié le 31 décembre 2024</dd></div>
<div><dt><a href="https://docs.google.com/presentation/d/e/2PACX-1vSchJ5BqobOsw1fqM1grYSnl-mKQ7dbzLRkk5hwtqHl7qH26jw8mghcOtlTfkL_7HcvuSv0NnK07Y3K/pub?start=false&loop=false&delayms=3000&slide=id.g117aa382f2b_0_85">Dossier de Presse</a></dt>
<dd>Publié le 31 décembre 2024</dd></div>
</dl>
{%- for press in collections.press -%}
<h3>{{ press.year }}</h3>
<dl class="press">
{%- for article in press.articles -%}
{%- if article.type == "video" -%}
<div class="video">
{%- else -%}
<div>
{%- endif -%}
<dt>
<a href="{{article.url}}">{{ article.title }}</a>
</dt>
<dd>Publié sur {{article.publishedBy}} le {{article.publishedAt}}</dd>
</div>
{%- endfor -%}
</dl>
{%- endfor -%}
</article>