aboutsummaryrefslogtreecommitdiff
path: root/templates/index.html
blob: 1ceb97489c2ee68f2af678e22dba26b48273354b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{{ define "index" }}
<!DOCTYPE html>
<html>
{{ template "head" . }}
<body>
<main id="legitrx">
{{ template "primaryheader" . }}
<div class="content">
	<table summary="repository list" class="list nowrap">
		<tr class="nohover">
			<th class="left">Name</th>
			<th class="left">Description</th>
			<th class="left">Idle</th>
		</tr>
{{ range .info }}
		<tr>
			<td class="toplevel-repo index-name"><a href="/{{ .Name }}">{{ .Name }}</a></td>
			<td class="desc"><a href="/{{ .Name }}">{{ .Desc }}</a></td>
			<td>{{ .Idle }}</td> <!--TODO: Idle highlight and absolute time-->
		</tr>
{{ end }}
	</table>
</div>
{{ template "foot" . }}
</main>
</body>
</html>
{{ end }}