You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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. {{ template "_internal/opengraph.html" . }}
  11. {{ template "_internal/twitter_cards.html" . }}
  12. <link rel="canonical" href="{{ .Permalink }}">
  13. {{ "<!-- plugins -->" | safeHTML }}
  14. {{ range site.Params.plugins.css }}
  15. <link rel="stylesheet" href="{{ .link | absURL }}">
  16. {{ end }}
  17. {{"<!-- Main Stylesheet -->"|safeHTML}}
  18. {{ $styles := resources.Get "css/style.css" | minify }}
  19. <link rel="stylesheet" href="{{ $styles.Permalink }}" media="screen">
  20. {{"<!-- Custom stylesheet - for your changes -->" |safeHTML}}
  21. {{ $custom := resources.Get "css/custom.css" | minify }}
  22. <link rel="stylesheet" href="{{ $custom.Permalink }}" media="screen">
  23. {{ "<!--Favicon-->" | safeHTML }}
  24. <link rel="shortcut icon" href="{{ `images/favicon.png` | absURL }}" type="image/x-icon">
  25. <link rel="icon" href="{{ `images/favicon.png` | absURL }}" type="image/x-icon">
  26. {{ with site.Params.google_analytics_id }}
  27. {{ "<!-- Global Site Tag (gtag.js) - Google Analytics -->" | safeHTML }}
  28. <script async src="https://www.googletagmanager.com/gtag/js?id={{ . }}"></script>
  29. <script>
  30. window.dataLayer = window.dataLayer || [];
  31. function gtag(){dataLayer.push(arguments);}
  32. gtag('js', new Date());
  33. gtag('config', '{{ . }}');
  34. </script>
  35. {{ end }}
  36. </head>