-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (34 loc) · 1.87 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
---
layout: default
---
<p>Bienvenue sur le site rassemblant les podcasts Découverto.</p>
<div class="card-grid">
<!-- -->
{% assign first_post = site.posts.first %}
<div class="cards first">
<h1 class="label reversed">Dernier épisode</h1>
<div class="center-content">
<div class="seven columns">
<h2><a class="post-link" href="{{ first_post.url | prepend: site.baseurl }}">{{ first_post.title }}</a></h2>
<p class="meta">{{ first_post.date | date: "%-d %b %Y" }}</p>
<p>{{ first_post.description }} </p>
</div>
<div class="four columns center-content">
<a href="{{ first_post.file }}" class="button button-primary" download="{{ first_post.title }}">Télécharger</a>
</div>
</div>
</div>
{% for post in site.posts offset:1 %}
<div class="cards">
<h2>
<a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
</h2>
<p class="meta">{{ post.date | date: "%-d %b %Y" }}</p>
<p>{{ post.description }} </p>
</div>
{% endfor %}
</div>
<p>Retrouvez les podcasts Découverto sur <a href="https://podcasts.apple.com/fr/podcast/d%C3%A9couverto-podcasts/id1655883103">Apple Music</a>, <a href="https://open.spotify.com/show/7gaapgAKxsEB4uxH1G2Ic9">Spotify</a>, <a href="https://www.deezer.com/us/show/5404527">Deezer</a>, <a href="https://player.fm/series/decouverto-podcasts">PlayFM</a>, <a href="/waiting">Google Podcasts</a>, ou l'application de podcast de votre choix <a href="{{ site.baseurl }}/podcast.xml">via RSS</a>.</p>
<p>Vous pouvez aussi voir les podcasts <a href="https://archive.org/details/d_couverto/">sur le site de l'Internet Archive</a>.</p>
<div class="container center-content extra-padding">
</div>