mirror of
https://github.com/Growstuff/growstuff.git
synced 2026-03-26 02:33:03 -04:00
16 lines
494 B
Plaintext
16 lines
494 B
Plaintext
<?xml version="1.0" encoding="UTF-8"?>
|
|
%rss{:version => 2.0}
|
|
%channel
|
|
%title
|
|
Recent posts from #{ @author ? @author : 'all members' } (#{ENV['GROWSTUFF_SITE_NAME']})
|
|
%link= posts_url
|
|
- @posts.each do |post|
|
|
%item
|
|
%title #{post.subject} by #{post.author.login_name}
|
|
%description
|
|
:escaped_markdown
|
|
#{ strip_tags post.body }
|
|
%pubDate= post.created_at.to_s(:rfc822)
|
|
%link= post_url(post)
|
|
%guid= post_url(post)
|