| 1234567891011121314151617181920212223242526272829 | doctype xmlrss(version='2.0',    xmlns:content='http://purl.org/rss/1.0/modules/content/',    xmlns:wfw='http://wellformedweb.org/CommentAPI/',    xmlns:dc='http://purl.org/dc/elements/1.1/'    xmlns:atom='http://www.w3.org/2005/Atom')  channel    - var articles = env.helpers.getArticles(contents);    title= locals.name    atom:link(href=locals.url + '/feed.xml', rel='self', type='application/rss+xml')    link= locals.url    description= locals.description    pubDate= articles[0].rfc822date    generator Wintersmith - https://github.com/jnordberg/wintersmith    language en    each article in articles      - var permalink = locals.url + article.url;      item        title= article.title        link= permalink        pubDate= article.rfc822date        guid(isPermaLink='true')= permalink        - var author = contents.authors[article.metadata.author + '.json'];        if author            author= author.metadata.name        else            author= article.author        //- passing locals.url resolves all relative urls to absolute        description= article.getHtml(locals.url)
 |