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 } } " >
< link rel = "stylesheet" type = "text/css" href = "/css/base_fonts.css" >
{{ if .Params.case_study_styles }}< link rel = "stylesheet" type = "text/css" href = "{{ " css / case_study_styles . css " | relURL } } " > <!-- custom case_study_styles on --> {{ else }}< link rel = "stylesheet" type = "text/css" href = "{{ " css / styles . css " | relURL } } " > <!-- default styles.css on --> {{ end }}
< link rel = "stylesheet" type = "text/css" href = "https://code.jquery.com/ui/1.12.1/themes/smoothness/jquery-ui.css" >
< link rel = "stylesheet" type = "text/css" href = "https://cdnjs.cloudflare.com/ajax/libs/sweetalert/1.1.3/sweetalert.min.css" >
< link rel = "stylesheet" type = "text/css" href = "{{ " css / callouts . css " | relURL } } " >
< link rel = "stylesheet" type = "text/css" href = "{{ " css / custom-jekyll / tags . css " | relURL } } " >
{{ if .Params.deprecated }}< link rel = "stylesheet" type = "text/css" href = "{{ " css / deprecation-warning . css " | relURL } } " > {{ end }}
{{ if eq .Params.class "gridPage" }}< link rel = "stylesheet" type = "text/css" href = "{{ " css / gridpage . css " | relURL } } " > {{ end }}
{{ with .Params.css }}{{ range (split . ",") }}< link rel = "stylesheet" type = "text/css" href = "{{ (trim . " " ) | relURL } } " > <!-- custom css added -->
{{ end }}{{ else }}<!-- no custom css detected --> {{ end }}
{{ 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 }}