diff options
Diffstat (limited to '')
-rw-r--r-- | _layouts/podcast.html | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/_layouts/podcast.html b/_layouts/podcast.html index ea03187..982fbc6 100644 --- a/_layouts/podcast.html +++ b/_layouts/podcast.html @@ -3,8 +3,14 @@ layout: post --- <audio controls> - <source src="{% link /resources/podcasts/{{ page.lang }}/{{ page.date | date: "%Y-%m-%d" }}-{{ page.ref }}.ogg %}" type="audio/ogg"> - <source src="{% link /resources/podcasts/{{ page.lang }}/{{ page.date | date: "%Y-%m-%d" }}-{{ page.ref }}.flac %}" type="audio/flac"> + <source src="{% link /resources/podcasts/{{ page.date | date: "%Y-%m-%d" }}-{{ page.slug }}.ogg %}" type="audio/ogg"> + <source src="{% link /resources/podcasts/{{ page.date | date: "%Y-%m-%d" }}-{{ page.slug }}.flac %}" type="audio/flac"> </audio> +<div class="torrent-link"> + <a href="/resources/podcasts/{{ page.date | date: "%Y-%m-%d" }}-{{ page.slug }}.ogg.torrent"> + torrent + </a> +</div> + {{ content }} |