diff options
author | Gabriel Arakaki Giovanini <mail@gabrielgio.me> | 2023-06-25 18:36:33 +0200 |
---|---|---|
committer | Gabriel Arakaki Giovanini <mail@gabrielgio.me> | 2023-06-25 18:36:33 +0200 |
commit | 438aa0e19b628923482dbc3fadcbb2e1ecfd5d7a (patch) | |
tree | 2a5e716b381373d6348f387e68db3eb9d6c3161c /templates | |
parent | ead855b7991b14554eb098616cfac29d91e796eb (diff) | |
download | lens-438aa0e19b628923482dbc3fadcbb2e1ecfd5d7a.tar.gz lens-438aa0e19b628923482dbc3fadcbb2e1ecfd5d7a.tar.bz2 lens-438aa0e19b628923482dbc3fadcbb2e1ecfd5d7a.zip |
fix: Actually read from embedded
Previous implementation was not reading from embedded fs.
Diffstat (limited to 'templates')
-rw-r--r-- | templates/layout.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/layout.html b/templates/layout.html index e21ec5e..bbf1558 100644 --- a/templates/layout.html +++ b/templates/layout.html @@ -4,7 +4,7 @@ <meta charset="utf-8"> <title>img | {{block "title" .}} noop {{end}}</title> <link rel="stylesheet" href="/static/main.css"> - <link rel="icon" href="static/square.svg" sizes="any" type="image/svg+xml"> + <link rel="icon" href="/static/square.svg" sizes="any" type="image/svg+xml"> <meta name="viewport" content="width=device-width, initial-scale=1" /> </head> <body> |