Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

head.html 1.5KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <head>
  2. <meta charset="utf-8">
  3. <title>{{ .Title }}</title>
  4. {{ "<!-- mobile responsive meta -->" | safeHTML }}
  5. <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
  6. <meta name="description" content="{{ with .Description }}{{ . }}{{ else }}{{ with site.Params.description }}{{ . }}{{ end }}{{ end }}">
  7. {{ with site.Params.author }}
  8. <meta name="author" content="{{ . }}">{{ end }}
  9. {{ hugo.Generator }}
  10. {{ "<!-- plugins -->" | safeHTML }}
  11. {{ range site.Params.plugins.css }}
  12. <link rel="stylesheet" href="{{ .link | absURL }}">
  13. {{ end }}
  14. {{"<!-- Main Stylesheet -->"|safeHTML}}
  15. {{ $styles := resources.Get "css/style.css" | minify }}
  16. <link rel="stylesheet" href="{{ $styles.Permalink }}" media="screen">
  17. {{"<!-- Custom stylesheet - for your changes -->" |safeHTML}}
  18. {{ $custom := resources.Get "css/custom.css" | minify }}
  19. <link rel="stylesheet" href="{{ $custom.Permalink }}" media="screen">
  20. {{ "<!--Favicon-->" | safeHTML }}
  21. <link rel="shortcut icon" href="{{ `images/favicon.png` | absURL }}" type="image/x-icon">
  22. <link rel="icon" href="{{ `images/favicon.png` | absURL }}" type="image/x-icon">
  23. {{ with site.Params.google_analytics_id }}
  24. {{ "<!-- Global Site Tag (gtag.js) - Google Analytics -->" | safeHTML }}
  25. <script async src="https://www.googletagmanager.com/gtag/js?id={{ . }}"></script>
  26. <script>
  27. window.dataLayer = window.dataLayer || [];
  28. function gtag(){dataLayer.push(arguments);}
  29. gtag('js', new Date());
  30. gtag('config', '{{ . }}');
  31. </script>
  32. {{ end }}
  33. </head>