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

gitlab.com/maxlefou/hugo.386.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax le Fou <buttbadger@gmail.com>2020-05-11 22:10:09 +0300
committerMax le Fou <buttbadger@gmail.com>2020-05-11 22:10:09 +0300
commitc42df8302cc78dfb56ca2453c3c5d8d307273062 (patch)
treeb42c1bc1eaaa5ef7aa9182330b91c2f2bbaa0ea2
parentb04c144d45ddd2390ae31d23af5b28f5c4366c29 (diff)
parent575a820df2b4a3a8c512899cbd0d292411b55d54 (diff)
Merge branch 'declareHTMLcharEncoding' into 'master'
Adds character encoding of HTML docs See merge request maxlefou/hugo.386!2
-rw-r--r--layouts/partials/head.html4
1 files changed, 3 insertions, 1 deletions
diff --git a/layouts/partials/head.html b/layouts/partials/head.html
index 7795acb..e7a2d75 100644
--- a/layouts/partials/head.html
+++ b/layouts/partials/head.html
@@ -1,5 +1,7 @@
<head>
<title>{{ .Site.Title }}</title>
+ <meta content="text/html;charset=utf-8" http-equiv="Content-Type">
+ <meta content="utf-8" http-equiv="encoding">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="format-detection" content="telephone=no" />
<meta name="theme-color" content="#000084" />
@@ -10,4 +12,4 @@
<link rel="stylesheet" href="{{ "/css/bootstrap-responsive.css" | relURL }}">
<link rel="stylesheet" href="{{ "/css/style.css" | relURL }}">
<!-- <noscript><style>body { visibility: visible }</style></noscript> -->
-</head> \ No newline at end of file
+</head>