{{ $scr := .Scratch }} {{/* Generate page description. */}} {{ $desc := "" }} {{ if .Params.summary }} {{ $desc = .Params.summary }} {{ else if .Params.abstract }} {{ $desc = .Params.abstract }} {{ else if .IsPage }} {{ $desc = .Summary }} {{ else if site.Params.description }} {{ $desc = site.Params.description }} {{ end }} {{ partial "functions/parse_theme" . }} {{ $css := site.Data.assets.css }} {{ $js := site.Data.assets.js }} {{ if ne ($scr.Get "primary") "#fff" }} {{ end }} {{/* Config LaTeX math rendering. */}} {{ if or .Params.math site.Params.math }} {{ $mathjax_config := resources.Get "js/mathjax-config.js" }} {{ end }} {{ $scr.Set "highlight_enabled" true }} {{ if isset .Params "highlight" }} {{ $scr.Set "highlight_enabled" .Params.highlight }} {{ else if isset site.Params "highlight" }} {{ $scr.Set "highlight_enabled" site.Params.highlight }} {{ end }} {{ if ($scr.Get "highlight_enabled") }} {{ $v := $css.highlight.version }} {{ with site.Params.highlight_style }} {{ printf "" (printf $css.highlight.url $css.highlight.version .) | safeHTML }} {{ printf "" (printf $css.highlight.url $css.highlight.version .) | safeHTML }} {{ else }} {{ if eq ($scr.Get "light") true }} {{ printf "" (printf $css.highlight.url $css.highlight.version "github") | safeHTML }} {{ printf "" (printf $css.highlight.url $css.highlight.version "dracula") | safeHTML }} {{ else }} {{ printf "" (printf $css.highlight.url $css.highlight.version "github") | safeHTML }} {{ printf "" (printf $css.highlight.url $css.highlight.version "dracula") | safeHTML }} {{ end }} {{ end }} {{ end }} {{ if or (eq site.Params.map.engine 2) (eq site.Params.map.engine 3) }} {{ printf "" (printf $css.leaflet.url $css.leaflet.version) $css.leaflet.sri | safeHTML }} {{ end }} {{ if eq site.Params.search.engine 2 }} {{ printf "" (printf $css.instantsearch.url $css.instantsearch.version) $css.instantsearch.sri | safeHTML }} {{ printf "" (printf $css.instantsearchTheme.url $css.instantsearchTheme.version) $css.instantsearchTheme.sri | safeHTML }} {{ end }} {{/* Load async scripts. */}} {{ range $k, $v := site.Data.assets.js }}{{/* TODO: investigate why `where ... "async" true` does not work. */}} {{ $load := $v.async }} {{/* Only load MathJax if required. */}} {{ if (eq $k "mathJax") | and (not (or $.Params.math site.Params.math)) }} {{ $load = false }} {{end}} {{ if $load }} {{ printf "" (printf $v.url $v.version) $v.sri | safeHTML }} {{end}} {{end}} {{/* We cannot use SRI with Google Fonts because the CSS is dynamically generated according to the user agent. */}} {{/* Hugo's htmlEscape cannot escape "|" in Google Font URIs so we implement our own escape functionality. */}} {{ with ($scr.Get "google_fonts") }} {{ end }} {{ $css_options := dict "targetPath" "css/academic.css" }} {{- if (in (slice (getenv "HUGO_ENV") hugo.Environment) "production") -}} {{- $css_options = merge $css_options (dict "outputStyle" "compressed") -}} {{- end -}} {{ $sass_template := resources.Get "scss/ansol.scss" }} {{ $style := $sass_template | resources.ExecuteAsTemplate "ansol_parsed.scss" . | toCSS $css_options }} {{- if (eq (getenv "HUGO_ENV") "production") -}} {{- $style = $style | minify | fingerprint "md5" -}} {{- end -}} {{ partial "marketing/google_analytics" . }} {{ partial "marketing/google_tag_manager" . }} {{/* Netlify Identity integration. */}} {{ if .IsHome | and (site.Params.cms.netlify_cms | default true) }} {{ end }} {{ with .OutputFormats.Get "RSS" }} {{ end }} {{/* Get page image for sharing. */}} {{ $featured_image := (.Resources.ByType "image").GetMatch "*featured*" }} {{ $avatar_image := (.Resources.ByType "image").GetMatch "avatar*" }} {{ $has_logo := fileExists "assets/images/logo.png" | or (fileExists "assets/images/logo.svg") }} {{ $og_image := "" }} {{ $twitter_card := "summary_large_image" }} {{ if (and (eq .Kind "taxonomy") $avatar_image) }} {{ $og_image = ($avatar_image.Fill "270x270 Center").Permalink }}{{/* Match image proc in About widget. */}} {{ $twitter_card = "summary" }} {{ else if $featured_image }} {{ $og_image = $featured_image.Permalink }} {{ else if .Params.header.image }} {{ $og_image = printf "img/%s" .Params.header.image | absURL }} {{ else if site.Params.sharing_image }} {{ $og_image = printf "img/%s" site.Params.sharing_image | absURL }} {{ else if $has_logo }} {{ $og_image = (partial "functions/get_logo" (dict "constraint" "fit" "size" 300)).Permalink }} {{ $twitter_card = "summary" }} {{ else }} {{ $og_image = (partial "functions/get_icon" 512).Permalink }} {{ $twitter_card = "summary" }} {{ end }} {{ $scr.Set "og_image" $og_image }}{{/* Set `og_image` globally for `rss.xml`. */}} {{ with site.Params.twitter }} {{ end }} {{- with $og_image -}} {{- end -}} {{ if .IsPage }} {{ if not .PublishDate.IsZero }} {{ else if not .Date.IsZero }} {{ end }} {{ if not .Lastmod.IsZero }}{{ end }} {{ else }} {{ if not .Date.IsZero }}{{ end }} {{ end }} {{ partial "jsonld/main" (dict "page" . "summary" $desc) }} {{ partial "cookie_consent" . }} {{ partial "custom_head" . }} {{ if not .IsHome }}{{ .Title }} | {{ end }}{{ site.Title }}