Skip to content

Commit

Permalink
examples: Remove unneeded meta tag from blog example
Browse files Browse the repository at this point in the history
```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.
  • Loading branch information
coliff authored Nov 24, 2020
1 parent b5d906e commit a546059
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions examples/blog/layouts/partials/meta.html
Original file line number Diff line number Diff line change
@@ -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 -->
<meta name="author" content="A Hugo User"> <!-- This should be modified to be your name, if you want to include this information -->

0 comments on commit a546059

Please sign in to comment.