rss_feed.blade.php 694 B

1234567891011121314151617181920
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!-- RSS generated by pixelfed v{{config('pixelfed.version')}} on {{$now}} -->
  3. <rss version="2.0">
  4. <channel>
  5. <title>{{ $account['username'] }}'s Portfolio</title>
  6. <link>{{ $portfolioUrl }}</link>
  7. <description>The pixelfed portfolio of {{ $account['username'] }} with the {{ count($feed) }} most recent posts</description>
  8. <pubDate>{{ $now }}</pubDate>
  9. <language>en-us</language>
  10. @foreach($feed as $p)
  11. <item>
  12. <title>{{$p['title']}}</title>
  13. <description>{{$p['description']}}</description>
  14. <guid>{{$p['url']}}</guid>
  15. <link>{{$p['url']}}</link>
  16. <pubDate>{{$p['pubDate']}}</pubDate>
  17. </item>
  18. @endforeach
  19. </channel>
  20. </rss>