diff options
author | r <r@freesoftwareextremist.com> | 2020-10-25 11:35:22 +0000 |
---|---|---|
committer | r <r@freesoftwareextremist.com> | 2020-10-25 11:35:22 +0000 |
commit | c733ab970a7375d2c1a17488950ef7f69b041696 (patch) | |
tree | 3f15dcab6d9638b5eb2a46bc80931bebc6f5e04f /templates | |
parent | 9a82a7d91492e3143332d98a6cea1dd644913287 (diff) | |
download | bloat-c733ab970a7375d2c1a17488950ef7f69b041696.tar.gz bloat-c733ab970a7375d2c1a17488950ef7f69b041696.zip |
Use favicon on all pages
Diffstat (limited to 'templates')
-rw-r--r-- | templates/header.tmpl | 1 | ||||
-rw-r--r-- | templates/root.tmpl | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/templates/header.tmpl b/templates/header.tmpl index 2d76f33..0c81b72 100644 --- a/templates/header.tmpl +++ b/templates/header.tmpl @@ -3,6 +3,7 @@ <html lang="en"> <head> <meta charset='utf-8'> + <link rel="icon" type="image/png" href="/static/favicon.png"> <meta content='width=device-width, initial-scale=1' name='viewport'> {{if .Target}} <base href="" target="{{.Target}}"> diff --git a/templates/root.tmpl b/templates/root.tmpl index b0c334a..ef25c90 100644 --- a/templates/root.tmpl +++ b/templates/root.tmpl @@ -3,7 +3,7 @@ <html> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8"> - <link rel="icon" type="image/png" href="static/favicon.png"> + <link rel="icon" type="image/png" href="/static/favicon.png"> <title>{{.Title}}</title> </head> <frameset cols="420px,*"> |