1
0
Fork 0
mirror of https://github.com/safing/web synced 2025-04-03 10:39:11 +00:00

Always link podcast audio to the asset server

This commit is contained in:
davegson 2021-05-20 18:18:07 +02:00
parent a08bacdc56
commit cc59474e95
2 changed files with 2 additions and 10 deletions

View file

@ -1,7 +1,3 @@
<audio preload="none" style="width: 100%;" controls="controls">
{% if page.asset_server %}
<source type="audio/mp3" src="{{ site.assets_server_url }}{{ page.podcast_link }}" />
{% else %}
<source type="audio/mp3" src="{{ site.url }}{{ page.podcast_link }}" />
{% endif %}
<source type="audio/mp3" src="{{ site.assets_server_url }}{{ page.podcast_link }}" />
</audio>

View file

@ -58,11 +58,7 @@ layout: null
<description>
<![CDATA[{{ episode.summary | expand_urls: site.url | cdata_escape }}]]>
</description>
{% if episode.asset_server %}
<enclosure url="{{ site.assets_server_url }}{{ episode.podcast_link }}" length="{{ episode.podcast_length }}" type="audio/mpeg" />
{% else %}
<enclosure url="{{ site.url }}{{ episode.podcast_link }}" length="{{ episode.podcast_length }}" type="audio/mpeg" />
{% endif %}
<enclosure url="{{ site.assets_server_url }}{{ episode.podcast_link }}" length="{{ episode.podcast_length }}" type="audio/mpeg" />
<itunes:subtitle><![CDATA[{{ episode.summary | strip_html | truncatewords: 50 | expand_urls: site.url | cdata_escape }}]]></itunes:subtitle>
<itunes:summary><![CDATA[{{ episode.summary | expand_urls: site.url | cdata_escape }}]]></itunes:summary>
<itunes:author>{{ site.podcast_author }}</itunes:author>