This repository was archived by the owner on Nov 9, 2020. It is now read-only.
File tree 2 files changed +6
-6
lines changed
2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -143,8 +143,8 @@ def audio_tag(page, site)
143
143
def web_player_moderator ( page , site )
144
144
return if page [ 'audio' ] . nil?
145
145
out = %Q{<div class="podlove-player-wrapper">}
146
- out = out + %Q{ <audio data-podlove-web-player-source="/players/#{ page [ 'slug' ] } /index.html">\n }
147
- out = out + " <source src='episodes/#{ page [ 'audio' ] [ 'mp3' ] } ' type='audio/mp3'>\n "
146
+ out = out + %Q{ <audio data-podlove-web-player-source="#{ site [ 'url' ] } /players/#{ page [ 'slug' ] } /index.html">\n }
147
+ out = out + " <source src='#{ site [ 'url' ] } / episodes/#{ page [ 'audio' ] [ 'mp3' ] } ' type='audio/mp3'>\n "
148
148
out = out + " </audio>\n "
149
149
out = out + "</div>\n "
150
150
out = out + "<script>$('audio').podlovewebplayer();</script>\n "
Original file line number Diff line number Diff line change @@ -6,8 +6,8 @@ layout: null
6
6
<channel >
7
7
<title >{{ site.title | xml_escape }}</title >
8
8
<description >{{ site.description | xml_escape }}</description >
9
- <link >{{ site.url }}{{ site.baseurl }} /</link >
10
- <atom : link href =" {{ " /feed.xml" | prepend: site.baseurl | prepend: site. url }}" rel =" self" type =" application/rss+xml" />
9
+ <link >{{ site.url }}/</link >
10
+ <atom : link href =" {{ " /feed.xml" | prepend: site.url }}" rel =" self" type =" application/rss+xml" />
11
11
<pubDate >{{ site.time | date_to_rfc822 }}</pubDate >
12
12
<lastBuildDate >{{ site.time | date_to_rfc822 }}</lastBuildDate >
13
13
<generator >Jekyll v{{ jekyll.version }}</generator >
@@ -16,8 +16,8 @@ layout: null
16
16
<title >{{ post.title | xml_escape }}</title >
17
17
<description >{{ post.content | xml_escape }}</description >
18
18
<pubDate >{{ post.date | date_to_rfc822 }}</pubDate >
19
- <link >{{ post.url | prepend: site.baseurl | prepend: site. url }}</link >
20
- <guid isPermaLink =" true" >{{ post.url | prepend: site.baseurl | prepend: site. url }}</guid >
19
+ <link >{{ post.url | prepend: site.url }}</link >
20
+ <guid isPermaLink =" true" >{{ post.url | prepend: site.url }}</guid >
21
21
{% for tag in post.tags %}
22
22
<category >{{ tag | xml_escape }}</category >
23
23
{% endfor %}
You can’t perform that action at this time.
0 commit comments