-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathindex.html
57 lines (53 loc) · 1.91 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
---
layout: default
---
<header>
<ul id="contact">
<li><a href="https://twitter.com/rustaceanfm"><img src="https://cdn.jsdelivr.net/npm/simple-icons@latest/icons/twitter.svg" alt="Twitter" /></a>
<li><a href="https://discord.gg/cHc3Gyc"><img src="https://cdn.jsdelivr.net/npm/simple-icons@latest/icons/discord.svg" alt="Discord" /></a>
<li><a href="https://github.com/rustacean-station/"><img src="https://cdn.jsdelivr.net/npm/simple-icons@latest/icons/github.svg" alt="GitHub" /></a>
<li><a href="mailto:[email protected]"><img src="/images/email.svg" alt="Email" /></a>
</ul>
<p id="tagline">
{{ site.subtitle }} {{ site.description }}
If you would like to offer Rust-related
podcast content for us to host, or
would like advice and resources on
making your own Rust podcast, get in
touch with us!
</p>
<div id="subscribe">
<noscript><a class="striking" href="{{ site.url }}/podcast.rss">{{ site.url }}/podcast.rss</a></noscript>
<script>
window.podcastData = {
"title": "{{ site.title }}",
"subtitle": "{{ site.subtitle }}",
"description": "{{ site.description }}",
"cover": "{{ site.url }}/images/artwork.jpg",
"feeds": [
{
"type": "audio",
"format": "mp3",
"url": "{{ site.url }}/podcast.rss",
"variant": "high"
}
]
}
</script>
<script class="podlove-subscribe-button" src="https://cdn.podlove.org/subscribe-button/javascripts/app.js" data-language="{{ site.lang }}" data-size="small auto" data-color="#444444" data-json-data="podcastData"></script>
</div>
</header>
{% assign episodes = site.episodes | sort: 'date' %}
{% for post in episodes reversed %}
<article class="episode">
<div class="episode_decor">
<a href="{{ post.url }}"><img src="/images/sound-bars.svg"></a>
</div>
<div class="episode_blurb">
<h1><a href="{{ post.url }}"> {{ post.title }}</a></h1>
<div class="body">
<p>{{ post.excerpt }}
</div>
</div>
</article>
{% endfor %}