Browse Source

add initial scale

master
Alexander Avery 3 weeks ago
parent
commit
72ebd593e8
  1. 4
      layouts/partials/head.html

4
layouts/partials/head.html

@ -1,9 +1,9 @@
<meta charset="utf-8"> <meta charset="utf-8">
<meta name="viewport" content="width=device-width"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{ if .IsHome }}{{ site.Title }}{{ else }}{{ printf "%s | %s" .Title site.Title }}{{ end }}</title> <title>{{ if .IsHome }}{{ site.Title }}{{ else }}{{ printf "%s | %s" .Title site.Title }}{{ end }}</title>
{{- partialCached "head/css.html" . }} {{- partialCached "head/css.html" . }}
<link rel="shortcut icon" href="{{ site.Params.meta.favicon }}"> <link rel="shortcut icon" href="{{ site.Params.meta.favicon }}">
{{ with .OutputFormats.Get "rss" }} {{ with .OutputFormats.Get "rss" }}
{{- printf `<link rel=%q type=%q href=%q title=%q>` .Rel .MediaType.Type .Permalink site.Title | safeHTML }} {{- printf `<link rel=%q type=%q href=%q title=%q>` .Rel .MediaType.Type .Permalink site.Title | safeHTML }}
{{- end }} {{- end }}

Loading…
Cancel
Save