github.com/servernoj/jade@v0.0.0-20231225191405-efec98d19db1/testdata/v1/rss.tpl (about) 1 <?xml version="1.0" encoding="utf-8" ?> 2 <rss version="2.0"></rss> 3 <channel> 4 <title>RSS Title</title> 5 <description>Some description here</description> 6 <link href="http://google.com"/> 7 <lastbuilddate>Mon, 06 Sep 2010 00:01:00 +0000</lastbuilddate> 8 <pubdate>Mon, 06 Sep 2009 16:45:00 +0000</pubdate> 9 {{/* _, item */}}{{ range items }} 10 <item> 11 <title>{{ item.title }}</title> 12 <description>{{ item.description }}</description> 13 <link/> 14 {{ item.link }} 15 </item> 16 {{ end }} 17 </channel>