main.html 441 B

123456789101112131415161718
  1. {{ $page := .page }}
  2. {{ $summary := .summary }}
  3. {{- if $page.IsHome -}}
  4. {{ partial "jsonld/website.html" $page }}
  5. {{- else if $page.IsPage -}}
  6. {{ if or (eq $page.Type "post") (eq $page.Type "publication") }}
  7. {{ partial "jsonld/article.html" (dict "page" $page "summary" $summary) }}
  8. {{ end }}
  9. {{ if eq $page.Type "talk" }}
  10. {{ partial "jsonld/event.html" (dict "page" $page "summary" $summary) }}
  11. {{ end }}
  12. {{- end }}