Compare commits
4 Commits
75e9fc79f3
...
b87b7bfa75
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
b87b7bfa75 | ||
|
|
e817ac577c | ||
| 089fbdec7f | |||
| d8d268667e |
@@ -8,7 +8,7 @@
|
|||||||
|
|
||||||
<channel>
|
<channel>
|
||||||
<title>{{isset($program) ? $program->name : "NH Gooi Gemist"}}</title>
|
<title>{{isset($program) ? $program->name : "NH Gooi Gemist"}}</title>
|
||||||
<description>{{isset($program) ? $program->description : "Fragmenten en interviews eerder te horen op NH Gooi Radio"}}</description>
|
<description><![CDATA[{!! isset($program) ? html_entity_decode($program->description) : "Fragmenten en interviews eerder te horen op NH Gooi Radio" !!}]]></description>
|
||||||
<link>https://nhgooi.nl{{isset($program) ? $program->url : ""}}</link>
|
<link>https://nhgooi.nl{{isset($program) ? $program->url : ""}}</link>
|
||||||
<language>nl-nl</language>
|
<language>nl-nl</language>
|
||||||
|
|
||||||
@@ -36,14 +36,14 @@
|
|||||||
<item>
|
<item>
|
||||||
<guid>https://nhgooi.nl/podcast-{{$podcast->id}}</guid>
|
<guid>https://nhgooi.nl/podcast-{{$podcast->id}}</guid>
|
||||||
<title>{{html_entity_decode($podcast->title)}}</title>
|
<title>{{html_entity_decode($podcast->title)}}</title>
|
||||||
<description>{{html_entity_decode($podcast->content)}}</description>
|
<description><![CDATA[{!! html_entity_decode($podcast->content) !!}]]></description>
|
||||||
<link>https://nhgooi.nl/gemist/fragment/{{$podcast->url}}</link>
|
<link>https://nhgooi.nl/gemist/fragment/{{$podcast->url}}</link>
|
||||||
<enclosure url="{{url('podcast/download' . $podcast->url . '?auth=' . $podcast->auth)}}" type="audio/mpeg" length="{{filesize($podcast->getSoundFile())}}"></enclosure>
|
<enclosure url="{{url('podcast/download' . $podcast->url . '?auth=' . $podcast->auth)}}" type="audio/mpeg" length="{{filesize($podcast->getSoundFile())}}"></enclosure>
|
||||||
<pubDate>{{$podcast->created->format('r')}}</pubDate>
|
<pubDate>{{$podcast->created->format('r')}}</pubDate>
|
||||||
|
|
||||||
<itunes:title>{{$podcast->title}}</itunes:title>
|
<itunes:title>{{$podcast->title}}</itunes:title>
|
||||||
<itunes:author>NH Gooi Radio</itunes:author>
|
<itunes:author>NH Gooi Radio</itunes:author>
|
||||||
<itunes:summary>{{$podcast->content}}</itunes:summary>
|
<itunes:summary><![CDATA[{!! html_entity_decode($podcast->content) !!}]]></itunes:summary>
|
||||||
<itunes:duration>{{$podcast->formatDuration()}}</itunes:duration>
|
<itunes:duration>{{$podcast->formatDuration()}}</itunes:duration>
|
||||||
<itunes:explicit>no</itunes:explicit>
|
<itunes:explicit>no</itunes:explicit>
|
||||||
@if($podcast->image)
|
@if($podcast->image)
|
||||||
|
|||||||
Reference in New Issue
Block a user