12345678910111213141516171819202122232425262728293031323334353637383940 |
- <head>
- <meta charset="utf-8">
- <title>{{.Title}} | {{ site.Title }}</title>
- {{ "<!-- mobile responsive meta -->" | safeHTML }}
- <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
- <meta name="description" content="{{ with .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 }}
- <meta name="og:image" content="{{.Params.Image | absURL }}" />
- {{ "<!-- Main Stylesheet -->" | safeHTML }}
- {{ $styles := resources.Get "css/style.css" | minify }}
- <link rel="stylesheet" href="{{ $styles.Permalink }}" 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">
- <!-- Global site tag (gtag.js) - Google Analytics -->
- <script async src="https://www.googletagmanager.com/gtag/js?id=G-H6XRRY9ZMW"></script>
- <script>
- window.dataLayer = window.dataLayer || [];
- function gtag(){dataLayer.push(arguments);}
- gtag('js', new Date());
- gtag('config', 'G-H6XRRY9ZMW');
- </script>
- <!-- Start of HubSpot Embed Code -->
- <script type="text/javascript" id="hs-script-loader" async defer src="//js.hs-scripts.com/9082955.js"></script>
- <!-- End of HubSpot Embed Code -->
- </head>
|