aboutsummaryrefslogtreecommitdiff
path: root/backend/templates/base.html
diff options
context:
space:
mode:
authorAnhgelus Morhtuuzh <william@herges.fr>2025-10-02 19:08:41 +0200
committerAnhgelus Morhtuuzh <william@herges.fr>2025-10-02 19:08:41 +0200
commit0ec5a0769f3c2dc851948a1011fa9062ff5c657b (patch)
treedb8cf8a41afd71681275af8bc2a999dafc397930 /backend/templates/base.html
parentf6c7a85ca04b9285677227d66205856c31a7d364 (diff)
feat(backend): customize header image and favicon
Diffstat (limited to 'backend/templates/base.html')
-rw-r--r--backend/templates/base.html3
1 files changed, 2 insertions, 1 deletions
diff --git a/backend/templates/base.html b/backend/templates/base.html
index ec3f25a..34a7c7f 100644
--- a/backend/templates/base.html
+++ b/backend/templates/base.html
@@ -5,6 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{{ .Title }}</title>
<link rel="stylesheet" href="{{ assets "styles.css" }}">
+ <link rel="shortcut icon" href="{{ static .Logo.Favicon }}">
<meta property="description" content="{{ .Description }}" />
<!-- Open Graph -->
<meta property="og:title" content="{{ .Title }}" />
@@ -24,7 +25,7 @@
</head>
<body>
<header>
- <img src="https://cdn.anhgelus.world/pfp.jpg" alt="pfp">
+ <img src="{{ static .Logo.Header }}" alt="Logo">
<nav>
{{ range .Links }}<a href="{{ .URL }}">{{ .Name }}</a>{{end}}
</nav>