7
1
mirror of https://gitlab.com/ansol/web-ansol.org.git synced 2024-10-23 16:20:42 +00:00
web-ansol.org/themes/academic/layouts/partials/jsonld/main.html

17 lines
637 B
HTML
Raw Normal View History

{{- $page := .page -}}
{{- $summary := .summary -}}
{{- $site_type := site.Params.site_type | default "Person" -}}
2020-06-11 11:46:16 +00:00
{{- if $page.IsHome -}}
{{- partial "jsonld/website.html" $page -}}
{{- if ne $site_type "Person" -}}
{{- partial "jsonld/business.html" $page -}}
{{- end -}}
2020-06-11 11:46:16 +00:00
{{- else if $page.IsPage -}}
{{ if (eq $page.Type "post") | or (eq $page.Type "publication") | or (eq $page.Type "project") }}
{{ partial "jsonld/article.html" (dict "page" $page "summary" $summary) }}
{{ end }}
{{ if eq $page.Type "talk" }}
{{ partial "jsonld/event.html" (dict "page" $page "summary" $summary) }}
{{ end }}
{{- end -}}