vods.xml - twitch-go - twitch.tv web application in Go
 (HTM) git clone git://git.codemadness.org/twitch-go
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
       vods.xml (336B)
       ---
            1 {{define "content"}}<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
            2 {{range .Videos}}
            3         <entry>
            4                 <title type="text">{{.Title}}</title>
            5                 <link rel="alternate" type="text/html" href="{{.Url}}" />
            6                 <id>{{.Url}}</id>
            7                 <updated>{{.Created_at}}</updated>
            8                 <published>{{.Created_at}}</published>
            9         </entry>
           10 {{end}}
           11 </feed>
           12 {{end}}