mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-09 16:24:51 +00:00
Update atom view, fix atom feed bug
This commit is contained in:
parent
ae0d5d2d40
commit
63b72c429c
1 changed files with 9 additions and 1 deletions
|
@ -6,13 +6,18 @@
|
||||||
<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>{{$items[0]['created_at']}}</updated>
|
@if($items && count($items))
|
||||||
|
<updated>{{$items[0]['created_at']}}</updated>
|
||||||
|
@endif
|
||||||
|
|
||||||
<author>
|
<author>
|
||||||
<name>{{$profile['username']}}</name>
|
<name>{{$profile['username']}}</name>
|
||||||
<uri>{{$profile['url']}}</uri>
|
<uri>{{$profile['url']}}</uri>
|
||||||
</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}}" />
|
||||||
|
@if($items && count($items))
|
||||||
@foreach($items as $item)
|
@foreach($items as $item)
|
||||||
<entry>
|
<entry>
|
||||||
<id>{{ $item['url'] }}</id>
|
<id>{{ $item['url'] }}</id>
|
||||||
|
@ -35,4 +40,7 @@
|
||||||
<media:content url="{{ $item['media_attachments'][0]['url'] }}" type="{{ $item['media_attachments'][0]['mime'] }}" medium="image" />
|
<media:content url="{{ $item['media_attachments'][0]['url'] }}" type="{{ $item['media_attachments'][0]['mime'] }}" medium="image" />
|
||||||
</entry>
|
</entry>
|
||||||
@endforeach
|
@endforeach
|
||||||
|
|
||||||
|
@endif
|
||||||
|
|
||||||
</feed>
|
</feed>
|
||||||
|
|
Loading…
Reference in a new issue