diff options
author | Runxi Yu <me@runxiyu.org> | 2025-02-12 11:01:52 +0800 |
---|---|---|
committer | Runxi Yu <me@runxiyu.org> | 2025-02-12 11:01:52 +0800 |
commit | 88d054811df785b92b1b76dd91265849af8f29b3 (patch) | |
tree | 522a9175290322cbe615ba98acf07a8a81888fcc /templates | |
parent | git_format_patch.go: Remove garbage printf (diff) | |
download | forge-88d054811df785b92b1b76dd91265849af8f29b3.tar.gz forge-88d054811df785b92b1b76dd91265849af8f29b3.tar.zst forge-88d054811df785b92b1b76dd91265849af8f29b3.zip |
*: Migrate to the new path scheme
Diffstat (limited to 'templates')
-rw-r--r-- | templates/_footer.html.tmpl | 2 | ||||
-rw-r--r-- | templates/_head.html.tmpl | 2 | ||||
-rw-r--r-- | templates/_repo_header.html.tmpl | 8 | ||||
-rw-r--r-- | templates/index.html.tmpl | 2 | ||||
-rw-r--r-- | templates/repo_tree_file.html.tmpl | 2 |
5 files changed, 8 insertions, 8 deletions
diff --git a/templates/_footer.html.tmpl b/templates/_footer.html.tmpl index b7a9061..5b1acd2 100644 --- a/templates/_footer.html.tmpl +++ b/templates/_footer.html.tmpl @@ -1,3 +1,3 @@ {{- define "footer" -}} -<a href="https://lindenii.runxiyu.org/forge/">Lindenii Forge</a> (<a href="/source/">source</a>, <a href="https://forge.lindenii.runxiyu.org/g/lindenii/repos/forge/">upstream</a>) +<a href="https://lindenii.runxiyu.org/forge/">Lindenii Forge</a> (<a href="/:/source/">source</a>, <a href="https://forge.lindenii.runxiyu.org/g/lindenii/repos/forge/">upstream</a>) {{- end -}} diff --git a/templates/_head.html.tmpl b/templates/_head.html.tmpl index b2cd487..4641107 100644 --- a/templates/_head.html.tmpl +++ b/templates/_head.html.tmpl @@ -1,5 +1,5 @@ {{- define "head_common" -}} <meta charset="utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1" /> -<link rel="stylesheet" href="/static/style.css" /> +<link rel="stylesheet" href="/:/static/style.css" /> {{- end -}} diff --git a/templates/_repo_header.html.tmpl b/templates/_repo_header.html.tmpl index 725d97b..8e5baa8 100644 --- a/templates/_repo_header.html.tmpl +++ b/templates/_repo_header.html.tmpl @@ -1,11 +1,11 @@ {{- define "repo_header" -}} <a href="/">Lindenii Forge</a> / -g +<a href="/{{ .group_name }}/">{{ .group_name }}</a> / -<a href="/g/{{ .group_name }}/">{{ .group_name }}</a> +<a href="/{{ .group_name }}/:">:</a> / -<a href="/g/{{ .group_name }}/repos/">repos</a> +<a href="/{{ .group_name }}/:/repos/">repos</a> / -<a href="/g/{{ .group_name }}/repos/{{ .repo_name }}/">{{ .repo_name }}</a> +<a href="/{{ .group_name }}/:/repos/{{ .repo_name }}/">{{ .repo_name }}</a> {{- end -}} diff --git a/templates/index.html.tmpl b/templates/index.html.tmpl index de3a643..505ea70 100644 --- a/templates/index.html.tmpl +++ b/templates/index.html.tmpl @@ -13,7 +13,7 @@ <ul> {{- range .groups }} <li> - <a href="g/{{ . }}/repos/">{{ . }}</a> + <a href="{{ . }}/:/repos/">{{ . }}</a> </li> {{- end }} </ul> diff --git a/templates/repo_tree_file.html.tmpl b/templates/repo_tree_file.html.tmpl index 90ce5ad..d4ba1e8 100644 --- a/templates/repo_tree_file.html.tmpl +++ b/templates/repo_tree_file.html.tmpl @@ -11,7 +11,7 @@ {{ template "repo_header" . }} </header> <p> - /{{ .path_spec }} (<a href="/g/{{ .group_name }}/repos/{{ .repo_name }}/raw/{{ .path_spec }}{{ if not (eq .ref_type "head") }}?{{ .ref_type }}={{ .ref }}{{ end }}">raw</a>) + /{{ .path_spec }} (<a href="/{{ .group_name }}/:/repos/{{ .repo_name }}/raw/{{ .path_spec }}{{ if not (eq .ref_type "head") }}?{{ .ref_type }}={{ .ref }}{{ end }}">raw</a>) </p> {{ .file_contents }} <footer> |