portfoligor/layouts/index.html

15 lines
405 B
HTML
Raw Permalink 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 .Site.Params.online }}
2021-10-29 22:34:24 +02:00
{{ partial "online" . }}
{{ end }}
{{ if .Site.Params.contactsPriv }}
{{ partial "perso" .}}
{{ end }}
{{ if .Site.Params.contactsPro }}
{{ partial "pro" . }}
{{ end }}
</main>
{{ end }}