summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Oliff <christianoliff@pm.me>2020-11-25 04:20:04 +0900
committerGitHub <noreply@github.com>2020-11-24 20:20:04 +0100
commita546059a9c0b4541f6c9e292f2bb065c1b6115d9 (patch)
tree341ec8924e4dfea179eadd72dbe24ee1ac655cad
parentb5d906e31e716328e2c0fbbdbfe6fc5b2ff98886 (diff)
examples: Remove unneeded meta tag from blog example
```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.
-rw-r--r--examples/blog/layouts/partials/meta.html3
1 files changed, 1 insertions, 2 deletions
diff --git a/examples/blog/layouts/partials/meta.html b/examples/blog/layouts/partials/meta.html
index 95fd2a711..71346030e 100644
--- a/examples/blog/layouts/partials/meta.html
+++ b/examples/blog/layouts/partials/meta.html
@@ -1,6 +1,5 @@
<meta charset="utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="{{ .Description }}">
- <meta name="author" content="A Hugo User"> <!-- This should be modified to be your name, if you want to include this information --> \ No newline at end of file
+ <meta name="author" content="A Hugo User"> <!-- This should be modified to be your name, if you want to include this information -->