diff --git a/layouts/_default/list.html b/layouts/_default/list.html
index 7cc92388..0b7d9098 100644
--- a/layouts/_default/list.html
+++ b/layouts/_default/list.html
@@ -2,11 +2,11 @@
{{ .Scratch.Set "scope" "list" }}
{{ if .Site.Params.list.showHero | default false }}
-{{ $heroStyle := print "partials/hero/" .Site.Params.list.heroStyle ".html" }}
-{{ if templates.Exists $heroStyle }}
+{{ $heroStyle := print "hero/" .Site.Params.list.heroStyle ".html" }}
+{{ if templates.Exists ( printf "partials/%s" $heroStyle ) }}
{{ partial $heroStyle . }}
{{ else }}
-{{ partial "partials/hero/basic.html" . }}
+{{ partial "hero/basic.html" . }}
{{ end }}
{{- end -}}
diff --git a/layouts/_default/single.html b/layouts/_default/single.html
index 5defb34c..c0a66f78 100644
--- a/layouts/_default/single.html
+++ b/layouts/_default/single.html
@@ -5,11 +5,11 @@
{{ if .Params.showHero | default (.Site.Params.article.showHero | default false) }}
{{ $heroStyle := .Params.heroStyle }}
{{ if not $heroStyle }}{{ $heroStyle = .Site.Params.article.heroStyle }}{{ end }}
- {{ $heroStyle := print "partials/hero/" $heroStyle ".html" }}
- {{ if templates.Exists $heroStyle }}
+ {{ $heroStyle := print "hero/" $heroStyle ".html" }}
+ {{ if templates.Exists ( printf "partials/%s" $heroStyle ) }}
{{ partial $heroStyle . }}
{{ else }}
- {{ partial "partials/hero/basic.html" . }}
+ {{ partial "hero/basic.html" . }}
{{ end }}
{{ end }}
diff --git a/layouts/_default/term.html b/layouts/_default/term.html
index ae8c702e..74b9b646 100644
--- a/layouts/_default/term.html
+++ b/layouts/_default/term.html
@@ -2,11 +2,11 @@
{{ .Scratch.Set "scope" "term" }}
{{ if .Site.Params.term.showHero | default false }}
-{{ $heroStyle := print "partials/hero/" .Site.Params.term.heroStyle ".html" }}
-{{ if templates.Exists $heroStyle }}
+{{ $heroStyle := print "hero/" .Site.Params.term.heroStyle ".html" }}
+{{ if templates.Exists ( printf "partials/%s" $heroStyle ) }}
{{ partial $heroStyle . }}
{{ else }}
-{{ partial "partials/hero/basic.html" . }}
+{{ partial "hero/basic.html" . }}
{{ end }}
{{- end -}}
diff --git a/layouts/_default/taxonomy.html b/layouts/_default/terms.html
similarity index 91%
rename from layouts/_default/taxonomy.html
rename to layouts/_default/terms.html
index 94859a69..43a850dc 100644
--- a/layouts/_default/taxonomy.html
+++ b/layouts/_default/terms.html
@@ -2,11 +2,11 @@
{{ .Scratch.Set "scope" "list" }}
{{ if .Site.Params.taxonomy.showHero | default false }}
-{{ $heroStyle := print "partials/hero/" .Site.Params.taxonomy.heroStyle ".html" }}
-{{ if templates.Exists $heroStyle }}
+{{ $heroStyle := print "hero/" .Site.Params.taxonomy.heroStyle ".html" }}
+{{ if templates.Exists ( printf "partials/%s" $heroStyle ) }}
{{ partial $heroStyle . }}
{{ else }}
-{{ partial "partials/hero/basic.html" . }}
+{{ partial "hero/basic.html" . }}
{{ end }}
{{- end -}}
diff --git a/layouts/index.html b/layouts/index.html
index ad851f50..3b35e78a 100644
--- a/layouts/index.html
+++ b/layouts/index.html
@@ -1,8 +1,8 @@
{{ define "main" }}
- {{ $partial := print "partials/home/" .Site.Params.homepage.layout ".html" }}
- {{ if templates.Exists $partial }}
+ {{ $partial := print "home/" .Site.Params.homepage.layout ".html" }}
+ {{ if templates.Exists ( printf "partials/%s" $partial ) }}
{{ partial $partial . }}
{{ else }}
- {{ partial "partials/home/profile.html" . }}
+ {{ partial "home/profile.html" . }}
{{ end }}
{{ end }}
diff --git a/layouts/partials/header/fixed-fill-blur.html b/layouts/partials/header/fixed-fill-blur.html
index 534fe989..02160bfe 100644
--- a/layouts/partials/header/fixed-fill-blur.html
+++ b/layouts/partials/header/fixed-fill-blur.html
@@ -2,7 +2,7 @@
- {{ partial "partials/header/basic.html" . }}
+ {{ partial "header/basic.html" . }}