2019-03-14 07:30:22 +01:00
|
|
|
{{ define "main" }}
|
2021-10-29 22:34:24 +02:00
|
|
|
<!-- Note that the content for index.html, as a sort of list page, will pull from content/_index.md -->
|
|
|
|
{{.Content}}
|
2021-11-23 10:45:14 +01:00
|
|
|
{{ if .Site.Params.online }}
|
2021-10-29 22:34:24 +02:00
|
|
|
{{ partial "online" . }}
|
|
|
|
{{ end }}
|
2021-11-23 10:45:14 +01:00
|
|
|
{{ if .Site.Params.contactsPriv }}
|
2019-03-14 07:30:22 +01:00
|
|
|
{{ partial "perso" .}}
|
|
|
|
{{ end }}
|
2021-11-23 10:45:14 +01:00
|
|
|
{{ if .Site.Params.contactsPro }}
|
2019-03-14 07:30:22 +01:00
|
|
|
{{ partial "pro" . }}
|
|
|
|
{{ end }}
|
|
|
|
</main>
|
|
|
|
{{ end }}
|