fediversity_website/themes/nluug/layouts/partials/schemas/include-relevant-schemas.html

18 lines
428 B
HTML

{{ if .IsHome -}}
{{ partial "schemas/schema_Organization.html" . }}
{{ partial "schemas/schema_WebSite.html" . }}
{{ partial "schemas/schema_WebPage.html" . }}
{{- else if .IsPage -}}
{{ if in .Params.content_types "person" }}
{{ partial "schemas/schema_Person.html" . }}
{{ else }}
{{ partial "schemas/schema_WebPage.html" . }}
{{ end }}
{{ end }}
{{ partial "schemas/schema_BreadcrumbList.html" . }}