mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-10 00:34:50 +00:00
Merge pull request #4042 from harmtemolder/dev
Add media:content to atom feed
This commit is contained in:
commit
1ae381b4b9
1 changed files with 26 additions and 22 deletions
|
@ -1,32 +1,36 @@
|
||||||
<?=
|
<?=
|
||||||
/* Using an echo tag here so the `<? ... ?>` won't get parsed as short tags */
|
/* Using an echo tag here so the `<? ... ?>` won't get parsed as short tags */
|
||||||
'<?xml version="1.0" encoding="UTF-8"?>'.PHP_EOL
|
'<?xml version="1.0" encoding="UTF-8"?>' . PHP_EOL
|
||||||
?>
|
?>
|
||||||
<feed xmlns="http://www.w3.org/2005/Atom" xmlns:media="http://search.yahoo.com/mrss/">
|
<feed xmlns="http://www.w3.org/2005/Atom" xmlns:media="http://search.yahoo.com/mrss/">
|
||||||
<id>{{$permalink}}</id>
|
<id>{{$permalink}}</id>
|
||||||
<title>{{$profile['username']}} on Pixelfed</title>
|
<title>{{$profile['username']}} on Pixelfed</title>
|
||||||
<subtitle type="html">{{$profile['note']}}</subtitle>
|
<subtitle type="html">{{$profile['note']}}</subtitle>
|
||||||
<updated>{{$profile['created_at']}}</updated>
|
<updated>{{$items[0]['created_at']}}</updated>
|
||||||
<author>
|
<author>
|
||||||
|
<name>{{$profile['username']}}</name>
|
||||||
<uri>{{$profile['url']}}</uri>
|
<uri>{{$profile['url']}}</uri>
|
||||||
<name>{{$profile['url']}}</name>
|
|
||||||
</author>
|
</author>
|
||||||
<link rel="alternate" type="text/html" href="{{$profile['url']}}"/>
|
<link rel="alternate" type="text/html" href="{{$profile['url']}}" />
|
||||||
<link rel="self" type="application/atom+xml" href="{{$permalink}}"/>
|
<link rel="self" type="application/atom+xml" href="{{$permalink}}" />
|
||||||
@foreach($items as $item) <entry>
|
@foreach($items as $item)
|
||||||
<title>{{ $item['content'] ? strip_tags($item['content']) : "No caption" }}</title>
|
<entry>
|
||||||
<link rel="alternate" href="{{ $item['url'] }}" />
|
|
||||||
<id>{{ $item['url'] }}</id>
|
<id>{{ $item['url'] }}</id>
|
||||||
|
<title>{{ $item['content_text'] ? $item['content_text'] : "No caption" }}</title>
|
||||||
|
<updated>{{ $item['created_at'] }}</updated>
|
||||||
<author>
|
<author>
|
||||||
<name> <![CDATA[{{ $profile['username'] }}]]></name>
|
<name>{{$profile['username']}}</name>
|
||||||
|
<uri>{{$profile['url']}}</uri>
|
||||||
</author>
|
</author>
|
||||||
<summary type="html">
|
<content type="html">
|
||||||
<![CDATA[
|
<![CDATA[
|
||||||
<img id="rss_item_{{$loop->iteration}}" src="{{ $item['media_attachments'][0]['url'] }}" alt="{{ $item['media_attachments'][0]['description'] }}">
|
<img id="rss_item_{{$loop->iteration}}" src="{{ $item['media_attachments'][0]['url'] }}" alt="{{ $item['media_attachments'][0]['description'] }}">
|
||||||
<p style="padding:10px;">{{ $item['content'] }}</p>
|
<p style="padding:10px;">{{ $item['content'] }}</p>
|
||||||
]]>
|
]]>
|
||||||
</summary>
|
</content>
|
||||||
<updated>{{ $item['created_at'] }}</updated>
|
<link rel="alternate" href="{{ $item['url'] }}" />
|
||||||
|
<summary type="html">{{ $item['content'] }}</summary>
|
||||||
|
<media:content url="{{ $item['media_attachments'][0]['url'] }}" type="image/png" medium="image" />
|
||||||
</entry>
|
</entry>
|
||||||
@endforeach
|
@endforeach
|
||||||
</feed>
|
</feed>
|
||||||
|
|
Loading…
Reference in a new issue