mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-07 20:30:36 -05:00
create/skeletons: Improve viewport meta tag
Remove initial-scale=1.0 (this is the browser default) Remove minimum-scale=1.0 (opinionated, can throw WCAG warning)
This commit is contained in:
parent
79a17d9e55
commit
f9163155d3
1 changed files with 1 additions and 1 deletions
|
@ -1,5 +1,5 @@
|
|||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1.0">
|
||||
<meta name="viewport" content="width=device-width">
|
||||
<title>{{ if .IsHome }}{{ site.Title }}{{ else }}{{ printf "%s | %s" .Title site.Title }}{{ end }}</title>
|
||||
{{ partialCached "head/css.html" . }}
|
||||
{{ partialCached "head/js.html" . }}
|
||||
|
|
Loading…
Reference in a new issue