head.html 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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 .Params.Description }}{{ . }}{{ else }}{{ with site.Params.description }}{{ . }}{{ end }}{{ end }}">
  7. {{ with site.Params.author }}<meta name="author" content="{{ . }}">{{ end }}
  8. {{ hugo.Generator }}
  9. {{ "<!-- plugins -->" | safeHTML }}
  10. {{ range site.Params.plugins.css }}
  11. <link rel="stylesheet" href="{{ .link | absURL }}">
  12. {{ end }}
  13. {{ "<!-- Main Stylesheet -->" | safeHTML }}
  14. {{ $style := resources.Get "scss/style.scss" | toCSS | minify }}
  15. <link href="{{ $style.Permalink }}" rel="stylesheet" media="screen"/>
  16. {{ "<!--Favicon-->" | safeHTML }}
  17. <link rel="shortcut icon" href="{{ `images/favicon.png` | absURL }}" type="image/x-icon">
  18. <link rel="icon" href="{{ `images/favicon.png` | absURL }}" type="image/x-icon">
  19. <link rel="preconnect" href="https://fonts.googleapis.com">
  20. <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
  21. <link href="https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700;800&display=swap" rel="stylesheet">
  22. {{ with .Params.Image }}
  23. <meta property="og:image" content="{{ . | absURL }}" />
  24. {{ end }}
  25. {{ template "_internal/opengraph.html" . }}
  26. <!-- {{ template "_internal/google_analytics.html" . }}
  27. {{ template "_internal/google_analytics_async.html" . }} -->
  28. <!-- Global site tag (gtag.js) - Google Analytics -->
  29. <script async src="https://www.googletagmanager.com/gtag/js?id=G-M2LLC6QDMZ"></script>
  30. <script>
  31. window.dataLayer = window.dataLayer || [];
  32. function gtag(){dataLayer.push(arguments);}
  33. gtag('js', new Date());
  34. gtag('config', 'G-M2LLC6QDMZ');
  35. </script>
  36. </head>