diff options
Diffstat (limited to 'templates/category_repos.html')
-rw-r--r-- | templates/category_repos.html | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/templates/category_repos.html b/templates/category_repos.html new file mode 100644 index 0000000..406fee4 --- /dev/null +++ b/templates/category_repos.html @@ -0,0 +1,23 @@ +{{- define "category_repos" -}} +<!DOCTYPE html> +<html> + <head> + {{ template "head_common" . }} + <title>Repos in {{ .category_name }} – Lindenii Forge</title> + </head> + <body class="category-index"> + <div class="padding-wrapper"> + <h1> + Repos in {{ .category_name }} + </h1> + <ul> + {{- range .repos }} + <li> + <a href="{{ . }}/">{{ . }}</a> + </li> + {{- end }} + </ul> + </div> + </body> +</html> +{{- end -}} |