pixelfed/resources/views/atom/user.blade.php

39 lines
1.6 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
?>
2019-07-18 02:47:09 +00:00
<feed xmlns="http://www.w3.org/2005/Atom" xmlns:media="http://search.yahoo.com/mrss/">
2018-05-30 04:54:31 +00:00
<id>{{$profile->permalink('.atom')}}</id>
2019-07-16 01:00:14 +00:00
<title>{{$profile->username}} on Pixelfed</title>
2018-05-30 04:54:31 +00:00
<subtitle>{{$profile->bio}}</subtitle>
<updated>{{$profile->updated_at->toAtomString()}}</updated>
<logo></logo>
<author>
<id>{{$profile->permalink()}}</id>
<uri>{{$profile->permalink()}}</uri>
<name>{{$profile->permalink()}}</name>
<summary type="html">{{$profile->bio}}</summary>
<link rel="alternate" type="text/html" href="{{$profile->url()}}"/>
<link rel="avatar" type="image/jpeg" media:width="120" media:height="120" href="{{$profile->avatarUrl()}}"/>
</author>
<link rel="alternate" type="text/html" href="{{$profile->url()}}"/>
<link rel="self" type="application/atom+xml" href="{{$profile->permalink('.atom')}}"/>
@foreach($items as $item)
<entry>
<title>{{ $item->caption }}</title>
2018-05-30 04:54:31 +00:00
<link rel="alternate" href="{{ $item->url() }}" />
2018-12-16 01:39:52 +00:00
<id>{{ $item->url() }}</id>
2018-05-30 04:54:31 +00:00
<author>
<name> <![CDATA[{{ $item->profile->username }}]]></name>
</author>
<summary type="html">
2019-05-14 01:00:05 +00:00
<![CDATA[
<img id="rss_item_{{$loop->iteration}}" src="{{ $item->thumb() }}">
<p style="padding:10px;">{{ $item->caption }}</p>
]]>
2018-05-30 04:54:31 +00:00
</summary>
<updated>{{ $item->updated_at->toAtomString() }}</updated>
</entry>
@endforeach
</feed>