templates/index.html 506 B raw
1
{{define "content"}}
2
{{if .Data.IsEmpty}}
3
<p class="empty">No repositories found.</p>
4
{{else}}
5
<table class="repo-list">
6
<thead>
7
  <tr>
8
    <th>Repository</th>
9
    <th class="desktop">Description</th>
10
    <th>Idle</th>
11
  </tr>
12
</thead>
13
<tbody>
14
{{range .Data.Repos}}
15
  <tr>
16
    <td><a href="{{$.BaseURL}}/{{.Name}}/">{{.Name}}</a></td>
17
    <td class="desktop">{{.Description}}</td>
18
    <td>{{if not .LastUpdated.IsZero}}{{timeAgo .LastUpdated}}{{end}}</td>
19
  </tr>
20
{{end}}
21
</tbody>
22
</table>
23
{{end}}
24
{{end}}