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

53 lines
2.2 KiB
PHP
Raw Normal View History

2024-12-08 10:24:17 +00:00
<?= '<?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/">
2024-12-08 10:24:17 +00:00
<id>{{$permalink}}</id>
<title>{{$profile['username']}} on {{config('pixelfed.domain.app', 'Pixelfed')}}</title>
<subtitle type="html">{{strip_tags($profile['note'])}}</subtitle>
@if($items && count($items))
<updated>{{$items[0]['created_at']}}</updated>
@endif
2023-05-19 09:38:11 +00:00
2024-12-08 10:24:17 +00:00
<author>
<name>{{$profile['username']}}</name>
<uri>{{$profile['url']}}</uri>
</author>
2023-05-19 09:38:11 +00:00
2024-12-08 10:24:17 +00:00
<link rel="alternate" type="text/html" href="{{$profile['url']}}" />
<link rel="self" type="application/atom+xml" href="{{$permalink}}" />
2023-05-19 09:38:11 +00:00
2024-12-08 10:24:17 +00:00
@if($items && count($items))
@foreach($items as $item)
<entry>
<id>{{ $item['url'] }}</id>
<title>{{ $item['content_text'] ? $item['content_text'] : "No caption" }}</title>
<updated>{{ $item['created_at'] }}</updated>
<author>
<name>{{$profile['username']}}</name>
<uri>{{$profile['url']}}</uri>
</author>
<content type="html">
<![CDATA[
<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>
]]>
</content>
<link rel="alternate" href="{{ $item['url'] }}" />
@if($item['content'] && strlen($item['content']))
<summary type="html">{{ $item['content'] }}</summary>
@endif
@foreach($item['media_attachments'] as $media)
<media:content
url="{{ $media['url'] }}"
type="{{ $media['mime'] }}"
medium="image"
/>
@endforeach
</entry>
@endforeach
@endif
</feed>