1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-12-01 12:24:28 +01:00
fab-manager/app/views/rss/projects/index.xml.builder
2019-06-24 11:03:40 +02:00

25 lines
928 B
Ruby

#encoding: UTF-8
xml.instruct! :xml, version: '1.0'
xml.rss version: '2.0' do
xml.channel do
xml.title "#{t('app.public.projects_list.projects_list.the_fablab_projects')} - #{@fab_name}"
xml.description t('app.public.home.latest_documented_projects')
xml.author @fab_name
xml.link root_url + '#!/projects'
xml.language I18n.locale.to_s
@projects.each do |project|
xml.item do
xml.guid project.id
xml.pubDate project.created_at.strftime('%F %T')
xml.title project.name
xml.link root_url + '#!/projects/' + project.slug
xml.author project.author&.user&.profile&.full_name
xml.description project.description
xml.enclosure url: root_url + project.project_image.attachment.large.url, length: project.project_image.attachment.large.size, type: project.project_image.attachment.content_type if project.project_image
end
end
end
end