diff --git a/layouts/index.html b/layouts/index.html
index 9f3daa3..ee001f5 100644
--- a/layouts/index.html
+++ b/layouts/index.html
@@ -1,6 +1,13 @@
{{ define "main" }}
{{ $headless := .Site.GetPage "/homepage" }}
{{ $sections := $headless.Resources.ByType "page" }}
+{{ $scratch := newScratch }}
+{{ $scratch.Set "sections" $sections }}
+{{ if not .Site.BuildDrafts }}
+ {{ $sections := where $sections "Draft" "!=" true}}
+ {{ $scratch.Set "sections" $sections }}
+{{ end}}
+{{ $sections := $scratch.Get "sections" }}