From 3f0f4c199c972b71ae2e43b4488303253dfa8d6c Mon Sep 17 00:00:00 2001 From: Vimux Date: Tue, 28 Nov 2023 07:59:32 -0500 Subject: [PATCH] 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. --- layouts/_default/baseof.html | 1 - 1 file changed, 1 deletion(-) diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html index eba7682..3a058ac 100644 --- a/layouts/_default/baseof.html +++ b/layouts/_default/baseof.html @@ -2,7 +2,6 @@ - {{ block "title" . }}{{ if not .IsHome }}{{ .Title }} | {{ end }}{{ .Site.Title }}{{ end }}