mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-12-18 11:03:17 +00:00
commit
dcd846e9a9
1 changed files with 47 additions and 41 deletions
|
@ -1,13 +1,10 @@
|
||||||
<?=
|
<?= '<?xml version="1.0" encoding="UTF-8"?>' . PHP_EOL ?>
|
||||||
/* Using an echo tag here so the `<? ... ?>` won't get parsed as short tags */
|
|
||||||
'<?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 {{config('pixelfed.domain.app', 'Pixelfed')}}</title>
|
||||||
<subtitle type="html">{{$profile['note']}}</subtitle>
|
<subtitle type="html">{{strip_tags($profile['note'])}}</subtitle>
|
||||||
@if($items && count($items))
|
@if($items && count($items))
|
||||||
<updated>{{$items[0]['created_at']}}</updated>
|
<updated>{{$items[0]['created_at']}}</updated>
|
||||||
@endif
|
@endif
|
||||||
|
|
||||||
<author>
|
<author>
|
||||||
|
@ -17,6 +14,7 @@
|
||||||
|
|
||||||
<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))
|
@if($items && count($items))
|
||||||
@foreach($items as $item)
|
@foreach($items as $item)
|
||||||
<entry>
|
<entry>
|
||||||
|
@ -29,7 +27,11 @@
|
||||||
</author>
|
</author>
|
||||||
<content type="html">
|
<content type="html">
|
||||||
<![CDATA[
|
<![CDATA[
|
||||||
<img id="rss_item_{{$item['id']}}" src="{{ $item['media_attachments'][0]['url'] }}" alt="{{ $item['media_attachments'][0]['description'] }}">
|
<div class="media-gallery">
|
||||||
|
@foreach($item['media_attachments'] as $media)
|
||||||
|
<img class="media-item" src="{{ $media['url'] }}" alt="{{ $media['description'] ?? '' }}">
|
||||||
|
@endforeach
|
||||||
|
</div>
|
||||||
<p style="padding:10px;">{!! $item['content'] !!}</p>
|
<p style="padding:10px;">{!! $item['content'] !!}</p>
|
||||||
]]>
|
]]>
|
||||||
</content>
|
</content>
|
||||||
|
@ -37,10 +39,14 @@
|
||||||
@if($item['content'] && strlen($item['content']))
|
@if($item['content'] && strlen($item['content']))
|
||||||
<summary type="html">{{ $item['content'] }}</summary>
|
<summary type="html">{{ $item['content'] }}</summary>
|
||||||
@endif
|
@endif
|
||||||
<media:content url="{{ $item['media_attachments'][0]['url'] }}" type="{{ $item['media_attachments'][0]['mime'] }}" medium="image" />
|
@foreach($item['media_attachments'] as $media)
|
||||||
|
<media:content
|
||||||
|
url="{{ $media['url'] }}"
|
||||||
|
type="{{ $media['mime'] }}"
|
||||||
|
medium="image"
|
||||||
|
/>
|
||||||
|
@endforeach
|
||||||
</entry>
|
</entry>
|
||||||
@endforeach
|
@endforeach
|
||||||
|
@endif
|
||||||
@endif
|
|
||||||
|
|
||||||
</feed>
|
</feed>
|
||||||
|
|
Loading…
Reference in a new issue