2024-11-01 14:56:08 +01:00
|
|
|
{{ define "main" }}
|
|
|
|
<!-- List the 5 last posts if the home_post_list parameters is set to true -->
|
|
|
|
{{ if .Site.Params.home_post_list }}
|
2024-12-08 08:55:51 +01:00
|
|
|
{{ partial "home_post_list" . }}
|
2024-11-01 14:56:08 +01:00
|
|
|
{{ end }}
|
|
|
|
<section class="home-content">
|
|
|
|
<!-- Content for home.html, as a sort of list page,
|
|
|
|
is pulled 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 }}
|
|
|
|
</section>
|
|
|
|
{{ end }}
|