diff options
author | Holger Weiss <holger@zedat.fu-berlin.de> | 2023-02-02 13:55:33 (GMT) |
---|---|---|
committer | Holger Weiss <holger@zedat.fu-berlin.de> | 2023-02-02 13:55:33 (GMT) |
commit | 00df6472a63de2f9e987cc6d68fc8b7c5d3ec3c6 (patch) | |
tree | e574c2e73703fc29bdb90a3f0e7368f654afd01b | |
parent | f4c60349753a8a01faa386df39544ac7ddfd8f2c (diff) | |
download | site-00df6472a63de2f9e987cc6d68fc8b7c5d3ec3c6.tar.gz |
Add "viewport" meta tag
Make the web site look better on mobile devices. See, e.g.:
https://developer.mozilla.org/en-US/docs/Web/HTML/Viewport_meta_tag
-rw-r--r-- | web/page.html | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/web/page.html b/web/page.html index 989dd4c..79f6525 100644 --- a/web/page.html +++ b/web/page.html | |||
@@ -9,6 +9,7 @@ | |||
9 | <meta http-equiv="Content-Type" content="text/html; charset={{ __encoding__ }}" /> | 9 | <meta http-equiv="Content-Type" content="text/html; charset={{ __encoding__ }}" /> |
10 | <meta name="description" content="{{ hx(page.description) }}" /> | 10 | <meta name="description" content="{{ hx(page.description) }}" /> |
11 | <meta name="keywords" content="{{ hx(page.keywords) }}" /> | 11 | <meta name="keywords" content="{{ hx(page.keywords) }}" /> |
12 | <meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
12 | <link href="rss.xml" rel="alternate" type="application/rss+xml" title="Monitoring Plugins News" /> | 13 | <link href="rss.xml" rel="alternate" type="application/rss+xml" title="Monitoring Plugins News" /> |
13 | <link href="resources/plugins.css" rel="stylesheet" type="text/css" /> | 14 | <link href="resources/plugins.css" rel="stylesheet" type="text/css" /> |
14 | <link href="resources/favicon.ico" rel="shortcut icon" type="image/x-icon" /> | 15 | <link href="resources/favicon.ico" rel="shortcut icon" type="image/x-icon" /> |