1
0
Fork 0
bascht.com/content/blog/index.xml.builder

25 lines
1001 B
Ruby

xml.instruct!
xml.feed "xmlns" => "http://www.w3.org/2005/Atom" do
site_url = "http://bascht.com/tech"
xml.title "bascht.com - tech"
xml.subtitle "baschts Techblog"
xml.id URI.join(site_url, blog(:tech).options.prefix.to_s)
xml.link "href" => URI.join(site_url, blog(:tech).options.prefix.to_s)
xml.link "href" => URI.join(site_url, current_page.path), "rel" => "self"
xml.updated(blog(:tech).articles.first.date.to_time.iso8601) unless blog(:tech).articles.empty?
xml.author { xml.name "Bascht" }
blog(:tech).articles[0..10].each do |article|
xml.entry do
xml.title article.title
xml.link "rel" => "alternate", "href" => URI.join(site_url, article.url)
xml.id URI.join(site_url, article.url)
xml.published article.date.to_time.iso8601
xml.updated File.mtime(article.source_file).iso8601
xml.author { xml.name "Bascht" }
# xml.summary article.summary, "type" => "html"
xml.content article.body, "type" => "html"
end
end
end