hugo

Unnamed repository; edit this file 'description' to name the repository.

git clone git://git.shimmy1996.com/hugo.git
commit a546059a9c0b4541f6c9e292f2bb065c1b6115d9
parent b5d906e31e716328e2c0fbbdbfe6fc5b2ff98886
Author: Christian Oliff <christianoliff@pm.me>
Date:   Wed, 25 Nov 2020 04:20:04 +0900

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.
Diffstat:
Mexamples/blog/layouts/partials/meta.html | 4+---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git 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 -->