15 lines
405 B
HTML
15 lines
405 B
HTML
{{ define "main" }}
|
|
<!-- Note that the content for index.html, as a sort of list page, will pull from content/_index.md -->
|
|
{{.Content}}
|
|
{{ if .Site.Params.online }}
|
|
{{ partial "online" . }}
|
|
{{ end }}
|
|
{{ if .Site.Params.contactsPriv }}
|
|
{{ partial "perso" .}}
|
|
{{ end }}
|
|
{{ if .Site.Params.contactsPro }}
|
|
{{ partial "pro" . }}
|
|
{{ end }}
|
|
</main>
|
|
{{ end }}
|