Browse Source

Merge branch 'declareHTMLcharEncoding' into 'master'

Adds character encoding of HTML docs

See merge request maxlefou/hugo.386!2
pull/1/head
Max le Fou 5 years ago
parent
commit
c42df8302c
  1. 4
      layouts/partials/head.html

4
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>
</head>

Loading…
Cancel
Save