2018-07-13 17:34:26 +00:00
|
|
|
<!-- Global site tag (gtag.js) - Google Analytics -->
|
|
|
|
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-36037335-10"></script>
|
|
|
|
<script>
|
|
|
|
window.dataLayer = window.dataLayer || [];
|
|
|
|
function gtag(){dataLayer.push(arguments);}
|
|
|
|
gtag('js', new Date());
|
|
|
|
|
|
|
|
gtag('config', 'UA-36037335-10');
|
|
|
|
</script>
|
2018-05-15 22:41:27 +00:00
|
|
|
<meta charset="utf-8">
|
2018-05-18 17:44:52 +00:00
|
|
|
<title>{{ if .Title }}{{ .Title }} - {{ end }}{{ .Site.Title }}</title>
|
2018-05-15 22:41:27 +00:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<link rel="shortcut icon" type="image/png" href="{{ "images/favicon.png" | relURL }}">
|
2018-07-26 09:53:57 +00:00
|
|
|
{{ partial "css.html" . }}
|
2018-05-15 22:41:27 +00:00
|
|
|
{{ if .Params.description }}
|
|
|
|
<meta name="description" content="{{ .Params.description }}" />
|
2018-06-07 21:55:24 +00:00
|
|
|
<meta property="og:description" content="{{ .Params.description }}" />
|
2018-05-15 22:41:27 +00:00
|
|
|
{{ else }}
|
|
|
|
<meta name="description" content="{{ .Params.title }}" />
|
2018-06-07 21:55:24 +00:00
|
|
|
<meta property="og:description" content="{{ .Params.title }}" />
|
|
|
|
{{ end }}
|
|
|
|
<meta property="og:url" content="{{ .Permalink }}" />
|
|
|
|
<meta property="og:title" content="{{ if .Title }}{{ .Title }} - {{ end }}{{ .Site.Title }}" />
|
|
|
|
{{ if eq .Section "blog" }}
|
|
|
|
{{ with findRE "<img.*?>" .Content 1 }}
|
|
|
|
<meta property="og:image" content="{{ index . 0 | replaceRE ".*src=\"(.+?)\".*" "$1" }}" />
|
|
|
|
{{ end }}
|
2018-05-15 22:41:27 +00:00
|
|
|
{{ end }}
|
|
|
|
<script
|
|
|
|
src="https://code.jquery.com/jquery-3.2.1.min.js"
|
|
|
|
integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4="
|
|
|
|
crossorigin="anonymous"></script>
|
|
|
|
<script
|
|
|
|
src="https://code.jquery.com/ui/1.12.1/jquery-ui.min.js"
|
|
|
|
integrity="sha256-VazP97ZCwtekAsvgPBSUwPFKdrwD3unUfSGVYrahUqU="
|
|
|
|
crossorigin="anonymous"></script>
|
|
|
|
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
|
|
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/sweetalert/1.1.3/sweetalert.min.js"></script>
|
|
|
|
<script src="{{ "js/script.js" | relURL }}"></script>
|
|
|
|
<script src="{{ "js/custom-jekyll/tags.js" | relURL }}"></script>
|
|
|
|
{{ with .Params.js }}{{ range (split . ",") }}<script src="{{ (trim . " ") | relURL }}"></script><!-- custom js added -->
|
2018-05-18 17:44:52 +00:00
|
|
|
{{ end }}{{ else }}<!-- no custom js detected -->{{ end }}
|
2018-07-13 17:42:26 +00:00
|
|
|
<script async="" defer="" src="//survey.g.doubleclick.net/async_survey?site=6ip6epxiqjqn4qgzemchgtfziy"></script>
|