portfoligor/layouts/index.html

15 lines
430 B
HTML
Raw Normal View History

{{ 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}}
{{ if not .Site.Params.online.hide }}
{{ partial "online" . }}
{{ end }}
{{if not .Site.Params.contactsPriv.hide }}
{{ partial "perso" .}}
{{ end }}
{{if not .Site.Params.contactsPro.hide }}
{{ partial "pro" . }}
{{ end }}
</main>
{{ end }}