diff --git a/assets/styles/main.css b/assets/styles/main.css
index d4c06f6..40973e3 100644
--- a/assets/styles/main.css
+++ b/assets/styles/main.css
@@ -41,7 +41,7 @@
opacity: 0;
}
-main {
+.list-main {
position: relative;
background-color: #fff;
}
diff --git a/content/_index.html b/content/_index.html
index 6dcd67a..802522b 100644
--- a/content/_index.html
+++ b/content/_index.html
@@ -3,6 +3,7 @@ title: Home
cardImage: charolette
motto: My name is Thomas Christensen
I am Milliron X
description: The homepage of Thomas A. Christensen II
+layout: _default/list
---
+
+ {{ block "content" . }}
+ {{ .Content }}
+ {{ end }}
+
+
+{{ end }}
diff --git a/layouts/academia/list.html b/layouts/academia/list.html
index 9a1dba6..39b1f57 100644
--- a/layouts/academia/list.html
+++ b/layouts/academia/list.html
@@ -1,4 +1,10 @@
{{ define "main" }}
+ {{ partial "scrolling-image-header" . }}
+
+
+
+
+
Selected Presentations
{{ $featuredpubs := where .Pages ".Params.featured" "==" true }}
{{ range $featuredpubs }}
@@ -11,4 +17,8 @@
{{ range $nonfeaturedpubs }}
{{ partial "academia/list-single.html" . }}
{{ end }}
+
+
+
+
{{ end }}
diff --git a/layouts/partials/scrolling-image-header.html b/layouts/partials/scrolling-image-header.html
new file mode 100644
index 0000000..f20bc75
--- /dev/null
+++ b/layouts/partials/scrolling-image-header.html
@@ -0,0 +1,20 @@
+{{ $millironx := resources.Get "graphics/millironx.svg" }}
+
+
+
+ {{ safeHTML (.Param "motto") }}
+
+
+ {{ $imgsrc := print "images/" (.Param "cardImage") ".jpg" }}
+ {{ $mainimg := resources.Get $imgsrc }}
+ {{ $blurimg := $mainimg.Filter (images.GaussianBlur 100) }}
+
+
+
+
+
+
+ {{ if eq .Params.storage "yt" }}
{{ .Scratch.Set "embedLink" (print "https://www.youtube-nocookie.com/embed/" .Params.storageId) }}
{{ end }}
{{ if eq .Params.storage "vimeo" }}
@@ -23,4 +26,14 @@
{{ .Content }}
+
+
+
+
+
+
+
+
+
+
{{ end }}
diff --git a/layouts/websites/list.html b/layouts/websites/list.html
index d9ff1c6..01fa73c 100644
--- a/layouts/websites/list.html
+++ b/layouts/websites/list.html
@@ -1,4 +1,12 @@
{{ define "main" }}
+{{ partial "scrolling-image-header" . }}
+
+
+
+
+
+
+
{{ range .Pages }}
{{ end }}
+
+
+
+
+
+
+
+
+
+
+
{{ end }}