diff options
author | Alan Pearce | 2014-09-08 21:14:05 +0100 |
---|---|---|
committer | Alan Pearce | 2014-09-08 21:14:05 +0100 |
commit | ab312f18166014cbcc0b5142a8c0b654ba8cca35 (patch) | |
tree | cdb1b3b24830b27c77b62b0a00b7f5e0892cbc41 | |
parent | 3edf24c876bd561b1f5904cae45871a4eb93bb57 (diff) | |
download | hyde-ab312f18166014cbcc0b5142a8c0b654ba8cca35.tar.lz hyde-ab312f18166014cbcc0b5142a8c0b654ba8cca35.tar.zst hyde-ab312f18166014cbcc0b5142a8c0b654ba8cca35.zip |
Add meta charset tag as recommended by W3C
I already send the header, but whatever.
-rw-r--r-- | layouts/partials/head.html | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/layouts/partials/head.html b/layouts/partials/head.html index efc7199..c62c2c3 100644 --- a/layouts/partials/head.html +++ b/layouts/partials/head.html @@ -1,6 +1,7 @@ <!DOCTYPE html> <html lang="en-GB"> <head> + <meta charset="UTF-8"> <meta name="viewport" content="width=device-width,initial-scale=1"> <title>{{ if ne .Title .Site.Title }}{{ .Title }} ยท {{ end }}{{ .Site.Title }}</title> <link rel="stylesheet" href="/css/poole.css"> |