diff options
Diffstat (limited to 'backend/templates/base.html')
| -rw-r--r-- | backend/templates/base.html | 3 |
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> |
