git.fiddlerwoaroof.com
twig/rss.twig
ffc9d555
 <?xml version="1.0" encoding="UTF-8" ?>
 <rss version="2.0">
6933b58c
   <channel>
     <title>Latest commits in {{ repo }}:{{ branch }}</title>
     <description>RSS provided by GitList</description>
     <link>{{ url('homepage') }}</link>
ffc9d555
 
6933b58c
     {% for commit in commits %}
       <item>
         <title>{{ commit.message }}</title>
         <description>{{ commit.author.name }} authored {{ commit.shortHash }} in {{ commit.date | format_date }}</description>
         <link>{{ url('commit', {repo: repo, commit: commit.hash}) }}</link>
         <pubDate>{{ commit.date | date('r') }}</pubDate>
       </item>
     {% endfor %}
   </channel>
ffc9d555
 </rss>