aboutsummaryrefslogtreecommitdiff
path: root/templates/group_repos.html.tmpl
diff options
context:
space:
mode:
Diffstat (limited to 'templates/group_repos.html.tmpl')
-rw-r--r--templates/group_repos.html.tmpl26
1 files changed, 26 insertions, 0 deletions
diff --git a/templates/group_repos.html.tmpl b/templates/group_repos.html.tmpl
new file mode 100644
index 0000000..7d39ea9
--- /dev/null
+++ b/templates/group_repos.html.tmpl
@@ -0,0 +1,26 @@
+{{- define "group_repos" -}}
+<!DOCTYPE html>
+<html lang="en">
+ <head>
+ {{ template "head_common" . }}
+ <title>Repos in {{ .group_name }} &ndash; Lindenii Forge</title>
+ </head>
+ <body class="group-index">
+ <div class="padding-wrapper">
+ <h1>
+ Repos in {{ .group_name }}
+ </h1>
+ <ul>
+ {{- range .repos }}
+ <li>
+ <a href="{{ . }}/">{{ . }}</a>
+ </li>
+ {{- end }}
+ </ul>
+ </div>
+ <footer>
+ {{ template "footer" . }}
+ </footer>
+ </body>
+</html>
+{{- end -}}