1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <head>
- <meta charset="utf-8">
- <title>{{ .Title }}</title>
- {{ "<!-- mobile responsive meta -->" | safeHTML }}
- <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
- <meta name="description" content="{{ with .Params.Description }}{{ . }}{{ else }}{{ with site.Params.description }}{{ . }}{{ end }}{{ end }}">
- {{ with site.Params.author }}<meta name="author" content="{{ . }}">{{ end }}
- {{ hugo.Generator }}
- {{ "<!-- plugins -->" | safeHTML }}
- {{ range site.Params.plugins.css }}
- <link rel="stylesheet" href="{{ .link | absURL }}">
- {{ end }}
- {{ "<!-- Main Stylesheet -->" | safeHTML }}
- {{ $style := resources.Get "scss/style.scss" | toCSS | minify }}
- <link href="{{ $style.Permalink }}" rel="stylesheet" media="screen"/>
- {{ "<!--Favicon-->" | safeHTML }}
- <link rel="shortcut icon" href="{{ `images/favicon.png` | absURL }}" type="image/x-icon">
- <link rel="icon" href="{{ `images/favicon.png` | absURL }}" type="image/x-icon">
- <link rel="preconnect" href="https://fonts.googleapis.com">
- <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
- <link href="https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700;800&display=swap" rel="stylesheet">
-
- {{ with .Params.Image }}
- <meta property="og:image" content="{{ . | absURL }}" />
- {{ end }}
- {{ template "_internal/opengraph.html" . }}
- <!-- {{ template "_internal/google_analytics.html" . }}
- {{ template "_internal/google_analytics_async.html" . }} -->
- <!-- Global site tag (gtag.js) - Google Analytics -->
- <script async src="https://www.googletagmanager.com/gtag/js?id=G-M2LLC6QDMZ"></script>
- <script>
- window.dataLayer = window.dataLayer || [];
- function gtag(){dataLayer.push(arguments);}
- gtag('js', new Date());
- gtag('config', 'G-M2LLC6QDMZ');
- </script>
- </head>
|