From ce71721c6dc80db8af63f2098a1548308e2621b2 Mon Sep 17 00:00:00 2001 From: Anirudh Oppiliappan Date: Sun, 11 Dec 2022 21:17:04 +0530 Subject: routes, templates: tree and log views --- templates/log.html | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 templates/log.html (limited to 'templates/log.html') diff --git a/templates/log.html b/templates/log.html new file mode 100644 index 0000000..357a5a8 --- /dev/null +++ b/templates/log.html @@ -0,0 +1,21 @@ +{{ define "log" }} + +{{ template "head" . }} + +
+

{{ .meta.Title }}

+

{{ .meta.Description }}

+
+ + {{ template "nav" . }} +
+ {{ $repo := .name }} + {{ range .commits }} +

{{ slice .Hash.String 0 8 }} + — {{ .Author.Name }}

+

{{ .Message }}

+ {{ end }} +
+ + +{{ end }} -- cgit