1
0
mirror of https://github.com/thebaer/tildes.git synced 2018-07-20 07:15:21 +00:00
tildes/templates/table.html
2015-01-27 11:00:05 -05:00

32 lines
487 B
HTML

{{define "table"}}
<html>
<head>
<title>{{.Title}}</title>
<link type="text/css" rel="stylesheet" href="tilde.css" />
</head>
<body id="hello">
<h1>{{.Title}}</h1>
<p>Last Updated: <time datetime="{{.Updated}}">{{.UpdatedForHumans}}</time></p>
<table>
<tr>
{{range .Table.Headers}}
<th>{{.}}</th>
{{end}}
</tr>
{{range .Table.Rows}}
<tr>
{{range .Data}}
<td>{{.}}</td>
{{end}}
</tr>
{{end}}
</table>
</body>
</html>
{{end}}