diff options
author | Runxi Yu <me@runxiyu.org> | 2025-02-14 11:56:21 +0800 |
---|---|---|
committer | Runxi Yu <me@runxiyu.org> | 2025-02-14 11:56:21 +0800 |
commit | c916e1854f36c22209987dcf7cb32c9feb811b22 (patch) | |
tree | 163bc34b14f7839b58a24f445756b1dadcfdc9d4 /templates/repo_index.html.tmpl | |
parent | README.md: Fix typo (diff) | |
download | forge-c916e1854f36c22209987dcf7cb32c9feb811b22.tar.gz forge-c916e1854f36c22209987dcf7cb32c9feb811b22.tar.zst forge-c916e1854f36c22209987dcf7cb32c9feb811b22.zip |
*: Make the forge title configurable
Diffstat (limited to 'templates/repo_index.html.tmpl')
-rw-r--r-- | templates/repo_index.html.tmpl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/repo_index.html.tmpl b/templates/repo_index.html.tmpl index 14d2a5d..806ceda 100644 --- a/templates/repo_index.html.tmpl +++ b/templates/repo_index.html.tmpl @@ -3,7 +3,7 @@ <html lang="en"> <head> {{ template "head_common" . }} - <title>{{ .group_name }}/repos/{{ .repo_name }} – Lindenii Forge</title> + <title>{{ .group_name }}/repos/{{ .repo_name }} – {{ .global.forge_title }}</title> </head> <body class="repo-index"> {{ template "header" . }} @@ -11,7 +11,7 @@ <table id="repo-info-table"> <thead> <tr class="title-row"> - <th colspan="2">Repo Info</th> + <th colspan="2">Repo info</th> </tr> </thead> <tbody> @@ -37,7 +37,7 @@ <table id="recent-commits" class="wide"> <thead> <tr class="title-row"> - <th colspan="3"><label for="toggle-table-recent-commits">Recent Commits (<a href="log/{{ if .ref_type }}?{{ .ref_type }}={{ .ref_name }}{{ end }}">see all</a>)</label></th> + <th colspan="3"><label for="toggle-table-recent-commits">Recent commits (<a href="log/{{ if .ref_type }}?{{ .ref_type }}={{ .ref_name }}{{ end }}">see all</a>)</label></th> </tr> </thead> <tbody> |