Dwelling/homepage/views/rss.pug

22 lines
710 B
Plaintext
Raw Normal View History

2021-02-10 01:01:50 +04:00
doctype xml
rss(version='2.0')
channel
title Arav's dwelling
description Updates on my websites and infrastructure.
language en-gb
link= schemahost
2021-02-10 01:01:50 +04:00
each item in items
item
title= item.title
category= item.category
guid!= rssLink(schemahost, item.date, item.category.toLowerCase())
2021-02-10 01:01:50 +04:00
pubDate= item.date
link!= rssLink(schemahost, item.date, item.category.toLowerCase())
2021-02-10 01:01:50 +04:00
author!= author
description
| <![CDATA[
each line in item.body.split("\n")
p!= line
| ]]>