games.html - 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
---
games.html (535B)
---
1 {{define "title"}}Games{{end}}
2 {{define "class"}}games{{end}}
3
4 {{define "content"}}
5 <table class="table" border="0">
6 <thead>
7 <tr>
8 <th class="game" align="left">Game</th>
9 <th class="viewers" align="right">Viewers</th>
10 <th class="channels" align="right">Channels</th>
11 </tr>
12 </thead>
13 <tbody>
14 {{range .Top}}
15 <tr>
16 <td class="game"><a href="/game?g={{.Game.Name}}">{{.Game.Name}}</a></td>
17 <td class="viewers" align="right">{{.Viewers}}</td>
18 <td class="channels" align="right">{{.Channels}}</td>
19 </tr>
20 {{end}}
21 </tbody>
22 </table>
23 {{end}}