mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-29 17:53:16 +00:00
Fix missing curly brace
This commit is contained in:
parent
023fe60ce5
commit
31cefa4b9e
1 changed files with 10 additions and 10 deletions
|
@ -6,7 +6,7 @@
|
||||||
<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>
|
<updated>{{$items[0]['created_at']}}</updated>
|
||||||
<author>
|
<author>
|
||||||
<name>{{$profile['username']}}</name>
|
<name>{{$profile['username']}}</name>
|
||||||
<uri>{{$profile['url']}}</uri>
|
<uri>{{$profile['url']}}</uri>
|
||||||
|
@ -29,7 +29,7 @@
|
||||||
]]>
|
]]>
|
||||||
</content>
|
</content>
|
||||||
<link rel="alternate" href="{{ $item['url'] }}" />
|
<link rel="alternate" href="{{ $item['url'] }}" />
|
||||||
<summary>{{ $item['content'] }}</summary>
|
<summary type="html">{{ $item['content'] }}</summary>
|
||||||
<media:content url="{{ $item['media_attachments'][0]['url'] }}" type="image/png" medium="image">
|
<media:content url="{{ $item['media_attachments'][0]['url'] }}" type="image/png" medium="image">
|
||||||
</entry>
|
</entry>
|
||||||
@endforeach
|
@endforeach
|
||||||
|
|
Loading…
Reference in a new issue