diff options
author | Runxi Yu <me@runxiyu.org> | 2025-02-10 19:30:53 +0800 |
---|---|---|
committer | Runxi Yu <me@runxiyu.org> | 2025-02-10 19:30:53 +0800 |
commit | 43bcb5c6b6e7233a33af9ffbd6e755f5a7279613 (patch) | |
tree | c9d877393821f64075652db68ccd93cb7e19bf65 | |
parent | head.html: Add a common head template (diff) | |
download | forge-43bcb5c6b6e7233a33af9ffbd6e755f5a7279613.tar.gz forge-43bcb5c6b6e7233a33af9ffbd6e755f5a7279613.tar.zst forge-43bcb5c6b6e7233a33af9ffbd6e755f5a7279613.zip |
*.html: Add "– Lindenii Forge" to the title
-rw-r--r-- | templates/category_index.html | 2 | ||||
-rw-r--r-- | templates/index.html | 2 | ||||
-rw-r--r-- | templates/repo_index.html | 2 | ||||
-rw-r--r-- | templates/repo_tree_dir.html | 2 | ||||
-rw-r--r-- | templates/repo_tree_file.html | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/templates/category_index.html b/templates/category_index.html index 6ee729e..7f206a4 100644 --- a/templates/category_index.html +++ b/templates/category_index.html @@ -3,7 +3,7 @@ <html> <head> {{ template "head_common" . }} - <title>{{ .category_name }}</title> + <title>{{ .category_name }} – Lindenii Forge</title> </head> <body class="category-index"> <div class="padding-wrapper"> diff --git a/templates/index.html b/templates/index.html index cbf7012..7ced768 100644 --- a/templates/index.html +++ b/templates/index.html @@ -3,7 +3,7 @@ <html> <head> {{ template "head_common" . }} - <title>Forge</title> + <title>Categories – Lindenii Forge</title> </head> <body class="index"> <div class="padding-wrapper"> diff --git a/templates/repo_index.html b/templates/repo_index.html index fc2ac51..ec937a0 100644 --- a/templates/repo_index.html +++ b/templates/repo_index.html @@ -3,7 +3,7 @@ <html> <head> {{ template "head_common" . }} - <title>{{ .category_name }}/repos/{{ .repo_name }}</title> + <title>{{ .category_name }}/repos/{{ .repo_name }} – Lindenii Forge</title> </head> <body class="repo-index"> <div class="padding-wrapper"> diff --git a/templates/repo_tree_dir.html b/templates/repo_tree_dir.html index 609d17e..1306167 100644 --- a/templates/repo_tree_dir.html +++ b/templates/repo_tree_dir.html @@ -3,7 +3,7 @@ <html> <head> {{ template "head_common" . }} - <title>{{ .category_name }}/repos/{{ .repo_name }}/{{ .path_spec }}</title> + <title>{{ .category_name }}/repos/{{ .repo_name }}/{{ .path_spec }} – Lindenii Forge</title> </head> <body class="repo-tree-dir"> <div class="padding-wrapper"> diff --git a/templates/repo_tree_file.html b/templates/repo_tree_file.html index cd51108..26c8eef 100644 --- a/templates/repo_tree_file.html +++ b/templates/repo_tree_file.html @@ -4,7 +4,7 @@ <head> {{ template "head_common" . }} <link rel="stylesheet" href="/static/chroma.css" /> - <title>{{ .category_name }}/repos/{{ .repo_name }}/{{ .path_spec }}</title> + <title>{{ .category_name }}/repos/{{ .repo_name }}/{{ .path_spec }} – Lindenii Forge</title> </head> <body class="repo-tree-file"> <p> |