1
0
Fork 0
pixelfed/resources/views/atom/user.blade.php

37 lines
1.4 KiB
PHP
Raw Normal View History

2018-05-30 04:54:31 +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-12-29 20:26:31 +00:00
<id>{{$permalink}}</id>
<title>{{$profile['username']}} on Pixelfed</title>
<subtitle type="html">{{$profile['note']}}</subtitle>
<updated>{{$items[0]['created_at']}</updated>
<author>
<name>{{$profile['username']}}</name>
<uri>{{$profile['url']}}</uri>
</author>
<link rel="alternate" type="text/html" href="{{$profile['url']}}"/>
<link rel="self" type="application/atom+xml" href="{{$permalink}}"/>
@foreach($items as $item)
<entry>
<id>{{ $item['url'] }}</id>
2022-12-29 20:26:31 +00:00
<title>{{ $item['content_text'] ? $item['content_text'] : "No caption" }}</title>
<updated>{{ $item['created_at'] }}</updated>
<author>
2022-12-29 20:26:31 +00:00
<name>{{$profile['username']}}</name>
<uri>{{$profile['url']}}</uri>
</author>
2022-12-29 20:26:31 +00:00
<content 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>
2022-12-29 20:26:31 +00:00
]]>
</content>
<link rel="alternate" href="{{ $item['url'] }}" />
<summary>{{ $item['content'] }}</summary>
<media:content url="{{ $item['media_attachments'][0]['url'] }}" type="image/png" medium="image">
</entry>
2018-05-30 04:54:31 +00:00
@endforeach
</feed>