Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/uPagge/uBlogger.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Oliff <christianoliff@pm.me>2020-11-24 22:20:04 +0300
committerKhusika Dhamar Gusti <mail@khusika.com>2020-11-25 10:21:32 +0300
commit74c90db9c44fc1a6ff94c1e81cfbb385d1dbd1b9 (patch)
tree60fbae0257924dedb539f911d8cf7358de0bbb6d /layouts/_default/baseof.html
parentd7f6344d008cd3008cc7eb9a4d91bdd594733d34 (diff)
fix(base): Remove unneeded meta tag
```html <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> ``` This was only needed for IE10 and lower (which are no longer supported) and chromeframe which was a Google plugin for IE8 and lower and was discontinued many years ago. So this meta tag can be safely removed. Partially fixes: #401 Signed-off-by: Khusika Dhamar Gusti <mail@khusika.com>
Diffstat (limited to 'layouts/_default/baseof.html')
-rw-r--r--layouts/_default/baseof.html1
1 files changed, 0 insertions, 1 deletions
diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html
index 4303015..c9858ce 100644
--- a/layouts/_default/baseof.html
+++ b/layouts/_default/baseof.html
@@ -6,7 +6,6 @@
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="noodp" />
- <meta http-equiv="X-UA-Compatible" content="IE=edge, chrome=1">
<title>
{{- block "title" . }}{{ .Site.Title }}{{ end -}}
</title>