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

github.com/spf13/hyde.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSorin Davidoi <sorin.davidoi@protonmail.com>2018-08-27 22:24:48 +0300
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2018-08-27 22:56:45 +0300
commit9bb31d6aedb7061c87e95d82c0148d3578d0f202 (patch)
tree58ef535fe31ff9af28f2c7d66b4ab3efbc814297
parent6f03ab30550073c2ba98a3e2fd67f26ccfc19e5b (diff)
fix(partials/head): Allow zooming
Disabling zooming is problematic for people with low vision (https://dequeuniversity.com/rules/axe/3.0/meta-viewport).
-rw-r--r--layouts/partials/head.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/layouts/partials/head.html b/layouts/partials/head.html
index 1f7b072..ab68c44 100644
--- a/layouts/partials/head.html
+++ b/layouts/partials/head.html
@@ -6,7 +6,7 @@
{{ .Hugo.Generator }}
<!-- Enable responsiveness on mobile devices-->
- <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1">
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
{{ if .IsHome -}}
<title>{{ .Site.Title }}</title>