From 5dd9a15a0e19a46b96d7194c4777dcd99adf3a21 Mon Sep 17 00:00:00 2001 From: vimux Date: Tue, 28 Nov 2023 08:15:41 -0500 Subject: [PATCH] Remove X-UA-Compatible meta tag 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 6b0ef901..919f19f9 100644 --- a/layouts/_default/baseof.html +++ b/layouts/_default/baseof.html @@ -3,7 +3,6 @@ - {{ block "title" . }}{{ if not .IsHome }}{{ .Title }} - {{ end }}{{ .Site.Title }}{{ end }}