feed.atom.jade 521 B

123456789101112131415
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. feed(xmlns='http://www.w3.org/2005/Atom')
  3. title= brand
  4. link(href="#{ uri }/articles.atom", rel="self", type="application/atom+xml")
  5. link(href="#{ uri }", rel="alternate", type="text/html")
  6. author
  7. name= name
  8. email= email
  9. id= uri + "/"
  10. each article, slug in public.articles._data
  11. entry
  12. title= article.title
  13. id= uri + "/articles/" + slug
  14. updated= article.date
  15. link(href="#{ uri }/articles/#{ slug }", rel="alternate", type="text/html")