7
1
mirror of https://gitlab.com/ansol/web-ansol.org.git synced 2024-10-18 22:13:06 +00:00
web-ansol.org/themes/academic/layouts/partials/functions/get_logo_url.html
2020-06-11 12:46:16 +01:00

13 lines
422 B
HTML

{{/* Function to get logo URL for JSONLD. */}}
{{/* Inputs: page context */}}
{{/* Output: logo URL (URL) */}}
{{ $logo_url := "" }}
{{ if resources.Get "images/logo.png" | or (resources.Get "images/logo.svg") }}
{{ $logo_url = (partial "functions/get_logo" (dict "constraint" "fit" "size" 192)).Permalink }}
{{ else }}
{{ $logo_url = (partial "functions/get_icon" 192).Permalink }}
{{ end }}
{{ return $logo_url }}