diff options
Diffstat (limited to 'templates/index.html')
-rw-r--r-- | templates/index.html | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/templates/index.html b/templates/index.html new file mode 100644 index 0000000..91f18b7 --- /dev/null +++ b/templates/index.html @@ -0,0 +1,27 @@ +{{ define "index" }} +<html> +{{ template "head" . }} + + <header> + <h1>{{ .meta.Title }}</h1> + <h2>{{ .meta.Description }}</h2> + </header> + <body> + {{ template "nav" . }} + <main> + <table> + <tr> + <td>repository</td> + <td>last active</td> + </tr> + {{ range $repo, $lc := .info }} + <tr> + <td><a href="/{{ $repo }}">{{ $repo }}</a></td> + <td>{{ $lc }}</td> + </tr> + {{ end }} + </table> + </main> + </body> +</html> +{{ end }} |