apps/kepler/templates/index.html 384 B raw
1
{{define "index.html"}}{{template "base.html" .}}{{end}}
2
{{define "title"}}{{.SiteName}}{{end}}
3
{{define "content"}}
4
{{if .Repos}}
5
<table class="repo-list">
6
    <tbody>
7
        {{range .Repos}}
8
        <tr>
9
            <td><a href="/{{.Name}}">{{.Name}}</a></td>
10
        </tr>
11
        {{end}}
12
    </tbody>
13
</table>
14
{{else}}
15
<p class="empty">No repositories found.</p>
16
{{end}}
17
{{end}}