Remove X-UA-Compatible meta tag (#88)
As of IE11, "document modes are deprecated and should no longer be used." Background: This meta tag is only relevant to the Internet Explorer browser family. IE has different modes for displaying web pages, allowing you to view HTML pages using previous versions of rendering rules. `IE=edge` tells Internet Explorer to use the latest available document mode. However, it is a default mode (IE11) for the HTML5 doctype declaration.
This commit is contained in:
parent
c43b9de620
commit
3f0f4c199c
1 changed files with 0 additions and 1 deletions
|
@ -2,7 +2,6 @@
|
|||
<html class="no-js" lang="{{ .Site.LanguageCode | default "en-us" }}">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="theme-color" content="{{ .Site.Params.Manifest.themeColor | default "#1b1b1b" }}">
|
||||
<title>{{ block "title" . }}{{ if not .IsHome }}{{ .Title }} | {{ end }}{{ .Site.Title }}{{ end }}</title>
|
||||
|
|
Loading…
Reference in a new issue