|
@@ -1,25 +1,25 @@
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
<feed xmlns="http://www.w3.org/2005/Atom">
|
|
<feed xmlns="http://www.w3.org/2005/Atom">
|
|
- <title type="text">{!! $p->e($p->feed['title']) !!}</title>
|
|
|
|
|
|
+ <title type="text">{{ $p->feed['title'] }}</title>
|
|
<link rel="self" type="application/atom+xml" href="{!! $p->feed['id'] !!}" />
|
|
<link rel="self" type="application/atom+xml" href="{!! $p->feed['id'] !!}" />
|
|
<link rel="alternate" type="text/html" href="{!! $p->feed['link'] !!}" />
|
|
<link rel="alternate" type="text/html" href="{!! $p->feed['link'] !!}" />
|
|
- <updated>{!! $p->e(\gmdate('c', $p->feed['updated'])) !!}</updated>
|
|
|
|
|
|
+ <updated>{{ \gmdate('c', $p->feed['updated']) }}</updated>
|
|
<generator>ForkBB</generator>
|
|
<generator>ForkBB</generator>
|
|
- <id>{!! $p->e($p->feed['id']) !!}</id>
|
|
|
|
|
|
+ <id>{{ $p->feed['id'] }}</id>
|
|
@foreach($p->feed['items'] as $item)
|
|
@foreach($p->feed['items'] as $item)
|
|
<entry>
|
|
<entry>
|
|
- <title>{!! $p->e($item['title']) !!}</title>
|
|
|
|
|
|
+ <title>{{ $item['title'] }}</title>
|
|
<link rel="alternate" type="text/html" href="{!! $item['link'] !!}" />
|
|
<link rel="alternate" type="text/html" href="{!! $item['link'] !!}" />
|
|
- <id>{!! $p->e($item['id']) !!}</id>
|
|
|
|
- <updated>{!! $p->e(\gmdate('c', $item['updated'])) !!}</updated>
|
|
|
|
- <published>{!! $p->e(\gmdate('c', $item['published'])) !!}</published>
|
|
|
|
- <author>
|
|
|
|
- <name>{!! $p->e($item['author']) !!}</name>
|
|
|
|
|
|
+ <id>{{ $item['id'] }}</id>
|
|
|
|
+ <updated>{{ \gmdate('c', $item['updated']) }}</updated>
|
|
|
|
+ <published>{{ \gmdate('c', $item['published']) }}</published>
|
|
|
|
+ <author>
|
|
|
|
+ <name>{{ $item['author'] }}</name>
|
|
@if ($item['isEmail'])
|
|
@if ($item['isEmail'])
|
|
- <email>{!! $p->e($item['email']) !!}</email>
|
|
|
|
|
|
+ <email>{{ $item['email'] }}</email>
|
|
@endif
|
|
@endif
|
|
- </author>
|
|
|
|
- <content type="html">{!! $p->e($item['content']) !!}</content>
|
|
|
|
|
|
+ </author>
|
|
|
|
+ <content type="html">{{ $item['content'] }}</content>
|
|
</entry>
|
|
</entry>
|
|
@endforeach
|
|
@endforeach
|
|
</feed>
|
|
</feed>
|