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

github.com/jbub/ghostwriter.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortmo-github <tmo-github@users.noreply.github.com>2018-02-13 10:07:27 +0300
committerJuraj Bubniak <juraj.bubniak@gmail.com>2018-02-13 10:07:27 +0300
commit732fbc6d04fac7c5b85f54d457785ebcb4f70a87 (patch)
tree87301acad810e9fa2da532363ce50c89e6a7eaae
parent0dc6b880ca42809bbbedfe8510a640e29b3f3d90 (diff)
Remove chrome=1 from X-UA-Compatible meta element (#50)
The Google Chrome Frame was retired four years ago; see discussion at https://stackoverflow.com/questions/22059060/is-it-still-valid-to-use-ie-edge-chrome-1 for more information. Also, having 'chrome=1' results in that meta line not validating with the W3C Validator.
-rw-r--r--layouts/partials/header.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/layouts/partials/header.html b/layouts/partials/header.html
index b657cab..8ddb315 100644
--- a/layouts/partials/header.html
+++ b/layouts/partials/header.html
@@ -2,7 +2,7 @@
<html{{ if .Site.Params.opengraph }} prefix="og: http://ogp.me/ns#"{{ end }}>
<head>
<meta charset="utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>{{ .Title }} &middot; {{ .Site.Author.name }}</title>
<meta name="description" content="{{ with .Description }}{{ . }}{{ else }}{{ if .IsPage }}{{ .Summary }}{{ else }}{{ with .Site.Params.description }}{{ . }}{{ end }}{{ end }}{{ end }}">
<meta name="HandheldFriendly" content="True">