diff --git a/layouts/index.html b/layouts/index.html
index 7ee5b55..46d01a1 100644
--- a/layouts/index.html
+++ b/layouts/index.html
@@ -28,7 +28,7 @@
{{ if isset .Site.Params "showpostsonhomepage" }}
-
{{ .Site.Params.ShowPostsOnHomePage | humanize }} Posts
+ Prochaines Dates
{{ $posts := where .Site.Pages "Params.type" "post" }}
@@ -40,7 +40,14 @@
{{ range $posts.ByDate.Reverse | first 4 }}
{{- partial "list-posts.html" . -}}
{{ end }}
+ {{ else if eq .Site.Params.ShowPostsOnHomePage "future" }}
+ {{ range $posts.ByDate }}
+ {{ if ge .Params.Date.Unix now.Unix }}
+ {{- partial "list-posts.html" . -}}
+ {{ end }}
+ {{ end }}
{{ end }}
+
{{ end }}