2017-06-04 19:06:22 +01:00
|
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<feed xmlns="http://www.w3.org/2005/Atom">
|
2023-06-11 16:52:37 +01:00
|
|
|
|
<title>Atom feed for {{ config('user.display_name') }}’s notes</title>
|
2017-06-04 19:06:22 +01:00
|
|
|
|
<link rel="self" href="{{ config('app.url') }}/notes/feed.atom" />
|
|
|
|
|
<id>{{ config('app.url')}}/notes</id>
|
|
|
|
|
<updated>{{ $notes[0]->updated_at->toAtomString() }}</updated>
|
|
|
|
|
|
2017-11-04 12:10:46 +00:00
|
|
|
|
@foreach($notes as $note)
|
2017-06-04 19:06:22 +01:00
|
|
|
|
<entry>
|
|
|
|
|
<title>{{ strip_tags($note->note) }}</title>
|
2025-04-06 17:22:36 +01:00
|
|
|
|
<link href="{{ $note->uri }}" />
|
|
|
|
|
<id>{{ $note->uri }}</id>
|
2017-06-04 19:06:22 +01:00
|
|
|
|
<updated>{{ $note->updated_at->toAtomString() }}</updated>
|
|
|
|
|
<content type="html">{{ $note->note }}</content>
|
|
|
|
|
<author>
|
2023-06-11 16:52:37 +01:00
|
|
|
|
<name>{{ config('user.display_name') }}</name>
|
2017-06-04 19:06:22 +01:00
|
|
|
|
</author>
|
|
|
|
|
</entry>
|
2017-11-04 12:10:46 +00:00
|
|
|
|
@endforeach
|
2017-06-04 19:06:22 +01:00
|
|
|
|
</feed>
|