diff options
author | Runxi Yu <me@runxiyu.org> | 2025-02-15 00:32:39 +0800 |
---|---|---|
committer | Runxi Yu <me@runxiyu.org> | 2025-02-15 00:32:39 +0800 |
commit | d5416d850c9b697bc8fb189841e1c1e622494f5e (patch) | |
tree | b877df54a6fbef112b0d32796f514b66177c9976 /templates/group_repos.html.tmpl | |
parent | Makefile, resources.go: Add vendor directory to serve library source (diff) | |
download | forge-d5416d850c9b697bc8fb189841e1c1e622494f5e.tar.gz forge-d5416d850c9b697bc8fb189841e1c1e622494f5e.tar.zst forge-d5416d850c9b697bc8fb189841e1c1e622494f5e.zip |
templates: *.html.tmpl -> *.tmpl
Diffstat (limited to 'templates/group_repos.html.tmpl')
-rw-r--r-- | templates/group_repos.html.tmpl | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/templates/group_repos.html.tmpl b/templates/group_repos.html.tmpl deleted file mode 100644 index 8c95c91..0000000 --- a/templates/group_repos.html.tmpl +++ /dev/null @@ -1,36 +0,0 @@ -{{- define "group_repos" -}} -<!DOCTYPE html> -<html lang="en"> - <head> - {{ template "head_common" . }} - <title>Repos in {{ .group_name }} – {{ .global.forge_title }}</title> - </head> - <body class="group-repos"> - {{ template "header" . }} - <div class="padding-wrapper"> - <table class="wide"> - <thead> - <tr> - <th colspan="2" class="title-row">Repos in {{ .group_name }}</th> - </tr> - </thead> - <tbody> - {{- range .repos }} - <tr> - <td> - <a href="{{ .Name }}/">{{ .Name }}</a> - </td> - <td> - {{ .Description }} - </td> - </tr> - {{- end }} - </tbody> - </table> - </div> - <footer> - {{ template "footer" . }} - </footer> - </body> -</html> -{{- end -}} |