diff options
author | siddharth ravikumar <s@ricketyspace.net> | 2022-06-19 18:50:04 -0400 |
---|---|---|
committer | siddharth ravikumar <s@ricketyspace.net> | 2022-06-19 18:50:04 -0400 |
commit | b01ccb904e702e76fc4b5f0c90fd5af056b64a51 (patch) | |
tree | 59c20b8a7d02c61a063e900df6b7e04fd0f34b9d /templates | |
parent | 6cc67230860439e8aef8f7464e3edbc12bc3cda1 (diff) |
templates/head.tmpl: add `description` and `theme-color` meta elements
Diffstat (limited to 'templates')
-rw-r--r-- | templates/head.tmpl | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/templates/head.tmpl b/templates/head.tmpl index 04ced90..07021b1 100644 --- a/templates/head.tmpl +++ b/templates/head.tmpl @@ -2,6 +2,8 @@ <title>peach — {{.Title}}</title> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta name="author" content="siddharth ravikumar"> +<meta name="description" content="peach - barebones weather service"> +<meta name="theme-color" content="#000000"/> <link rel="icon" href="/static/logo/peach-180.png" sizes="180x180" type="image/png"> <link rel="apple-touch-icon" href="/static/logo/peach-152.png" sizes="152x152" type="image/png"> <link rel="apple-touch-icon" href="/static/logo/peach-114.png" sizes="114x114" type="image/png"> |