mirror of
https://github.com/Growstuff/growstuff.git
synced 2026-05-11 09:17:20 -04:00
19 lines
718 B
Plaintext
19 lines
718 B
Plaintext
<?xml version="1.0" encoding="UTF-8"?>
|
|
%rss{ version: 2.0 }
|
|
%channel
|
|
%title
|
|
Recent harvests from #{@owner ||= 'all members'} (#{ENV['GROWSTUFF_SITE_NAME']})
|
|
%link= harvests_url
|
|
- @harvests.each do |harvest|
|
|
%item
|
|
%title #{harvest.owner_login_name}'s #{harvest.crop_name}
|
|
%pubdate= harvest.harvested_at
|
|
%description
|
|
:escaped
|
|
<p>Crop: #{harvest.crop_name}</p>
|
|
<p>Plant path: #{harvest.plant_part_name}</p>
|
|
<p>Quantity: #{harvest.quantity ||= 'unknown' }</p>
|
|
<p>Harvested on: #{harvest.harvested_at ||= 'unknown' }</p>
|
|
%link= harvest_url(slug: harvest.slug)
|
|
%guid= harvest_url(slug: harvest.slug)
|