examples: Remove unneeded meta tag from blog example
authorChristian Oliff <christianoliff@pm.me>
Tue, 24 Nov 2020 19:20:04 +0000 (04:20 +0900)
committerGitHub <noreply@github.com>
Tue, 24 Nov 2020 19:20:04 +0000 (20:20 +0100)
```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.

examples/blog/layouts/partials/meta.html

index 95fd2a711e2e24c4762f9aa1707dd1534b7308fc..71346030e4cf209c4660840fe38c22604e2fb109 100644 (file)
@@ -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 -->