2018-05-30 04:54:31 +00:00
|
|
|
<?=
|
2022-01-25 07:39:46 +00:00
|
|
|
/* Using an echo tag here so the `<? ... ?>` won't get parsed as short tags */
|
|
|
|
'<?xml version="1.0" encoding="UTF-8"?>'.PHP_EOL
|
2018-05-30 04:54:31 +00:00
|
|
|
?>
|
2019-07-18 02:47:09 +00:00
|
|
|
<feed xmlns="http://www.w3.org/2005/Atom" xmlns:media="http://search.yahoo.com/mrss/">
|
2022-01-25 07:39:46 +00:00
|
|
|
<id>{{$permalink}}</id>
|
|
|
|
<title>{{$profile['username']}} on Pixelfed</title>
|
|
|
|
<subtitle type="html">{{$profile['note']}}</subtitle>
|
|
|
|
<updated>{{$profile['created_at']}}</updated>
|
2018-05-30 04:54:31 +00:00
|
|
|
<author>
|
2022-01-25 07:39:46 +00:00
|
|
|
<uri>{{$profile['url']}}</uri>
|
|
|
|
<name>{{$profile['url']}}</name>
|
2018-05-30 04:54:31 +00:00
|
|
|
</author>
|
2022-01-25 07:39:46 +00:00
|
|
|
<link rel="alternate" type="text/html" href="{{$profile['url']}}"/>
|
|
|
|
<link rel="self" type="application/atom+xml" href="{{$permalink}}"/>
|
2022-09-25 07:14:20 +00:00
|
|
|
@foreach($items as $item) <entry>
|
|
|
|
<title>{{ $item['content'] ? strip_tags($item['content']) : "No caption" }}</title>
|
2022-01-25 07:39:46 +00:00
|
|
|
<link rel="alternate" href="{{ $item['url'] }}" />
|
|
|
|
<id>{{ $item['url'] }}</id>
|
|
|
|
<author>
|
|
|
|
<name> <![CDATA[{{ $profile['username'] }}]]></name>
|
|
|
|
</author>
|
|
|
|
<summary type="html">
|
|
|
|
<![CDATA[
|
|
|
|
<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>
|
|
|
|
]]>
|
|
|
|
</summary>
|
|
|
|
<updated>{{ $item['created_at'] }}</updated>
|
|
|
|
</entry>
|
2018-05-30 04:54:31 +00:00
|
|
|
@endforeach
|
2018-08-08 20:36:45 +00:00
|
|
|
</feed>
|