16 lines
496 B
HTML
16 lines
496 B
HTML
{{ define "main" }}
|
|
<main aria-role="main" itemscope itemtype="https://schema.org/Person">
|
|
{{if not .Site.Params.contactsPriv.hide }}
|
|
{{ partial "perso" .}}
|
|
{{ end }}
|
|
{{if not .Site.Params.contactsPro.hide }}
|
|
{{ partial "pro" . }}
|
|
{{ end }}
|
|
<!-- Note that the content for index.html, as a sort of list page, will pull from content/_index.md -->
|
|
{{.Content}}
|
|
{{ if not .Site.Params.online }}
|
|
{{ partial "online" }}
|
|
{{ end }}
|
|
</main>
|
|
{{ end }}
|