From 01f27147baf80e2222927ddca9369c7d99b4ff3c Mon Sep 17 00:00:00 2001 From: Anirudh Oppiliappan Date: Mon, 12 Dec 2022 21:33:09 +0530 Subject: routes: index view --- templates/index.html | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 templates/index.html (limited to 'templates/index.html') 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" }} + +{{ template "head" . }} + +
+

{{ .meta.Title }}

+

{{ .meta.Description }}

+
+ + {{ template "nav" . }} +
+ + + + + + {{ range $repo, $lc := .info }} + + + + + {{ end }} +
repositorylast active
{{ $repo }}{{ $lc }}
+
+ + +{{ end }} -- cgit