summaryrefslogtreecommitdiffstats
path: root/templates/refs.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/refs.html')
-rw-r--r--templates/refs.html32
1 files changed, 32 insertions, 0 deletions
diff --git a/templates/refs.html b/templates/refs.html
new file mode 100644
index 0000000..e1668d2
--- /dev/null
+++ b/templates/refs.html
@@ -0,0 +1,32 @@
+{{ define "refs" }}
+<html>
+{{ template "head" . }}
+
+ <header>
+ <h1>{{ .meta.Title }}</h1>
+ <h2>{{ .meta.Description }}</h2>
+ </header>
+ <body>
+ {{ template "nav" . }}
+ <main>
+ <h3>branches</h3>
+ {{ $name := .name }}
+ {{ range .branches }}
+ <p>
+ <strong>{{ .Name.Short }}</strong>
+ <a href="/{{ $name }}/tree/{{ .Name.Short }}/">browse</a>
+ <a href="/{{ $name }}/log/{{ .Name.Short }}">log</a>
+ </p>
+ {{ end }}
+ {{ if .tags }}
+ {{ range .tags }}
+ <p>{{ .Name }}</p>
+ {{ if .Message }}
+ <p>{{ .Message }}</p>
+ {{ end }}
+ {{ end }}
+ {{ end }}
+ </main>
+ </body>
+</html>
+{{ end }}