diff options
author | Noritada Kobayashi <noritada.kobayashi@gmail.com> | 2023-11-08 02:56:44 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-07 09:56:44 -0800 |
commit | 7158157f5fe07b8f97842736ea87b598baabb7da (patch) | |
tree | dc8dacfb018ad93c57bb4fbfdf948ce5b2db3086 /bskyweb/templates/base.html | |
parent | 7b2a7db83c08cd149d791382c25545ceb243490f (diff) | |
download | voidsky-7158157f5fe07b8f97842736ea87b598baabb7da.tar.zst |
Correct meta tag attributes (#1829)
Diffstat (limited to 'bskyweb/templates/base.html')
-rw-r--r-- | bskyweb/templates/base.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bskyweb/templates/base.html b/bskyweb/templates/base.html index 7eeb7e4cc..b03fbbee4 100644 --- a/bskyweb/templates/base.html +++ b/bskyweb/templates/base.html @@ -176,8 +176,8 @@ <link rel="icon" type="image/png" sizes="32x32" href="/static/favicon-32x32.png"> <link rel="icon" type="image/png" sizes="16x16" href="/static/favicon-16x16.png"> {% block html_head_extra -%}{%- endblock %} - <meta name="application-name" name="Bluesky"> - <meta name="generator" name="bskyweb"> + <meta name="application-name" content="Bluesky"> + <meta name="generator" content="bskyweb"> </head> <body> {%- block body_all %} |