diff --git a/layouts/partials/paige/menu.html b/layouts/partials/paige/menu.html
deleted file mode 100644
index c6e526e3..00000000
--- a/layouts/partials/paige/menu.html
+++ /dev/null
@@ -1,61 +0,0 @@
-{{ $page := . }}
-
-{{ $basepath := path.Clean (urls.Parse (relLangURL "")).Path }}
-{{ $links := false }}
-{{ $pills := false }}
-{{ $tabs := false }}
-{{ $underline := false }}
-
-{{ if eq $basepath "/" }}
- {{ $basepath = "" }}
-{{ end }}
-
-{{ $pagepath := strings.TrimPrefix $basepath $page.RelPermalink }}
-
-{{ with $page.Param "paige.menu_style" }}
- {{ if eq . "pills" }}
- {{ $pills = true }}
- {{ else if eq . "tabs" }}
- {{ $tabs = true }}
- {{ else if eq . "underline" }}
- {{ $underline = true }}
- {{ else }}
- {{ $links = true }}
- {{ end }}
-{{ else }}
- {{ $links = true }}
-{{ end }}
-
-{{ with site.Menus.main }}
-
-{{ end }}
diff --git a/layouts/partials/paige/site-header.html b/layouts/partials/paige/site-header.html
index c63dd12a..794adc30 100644
--- a/layouts/partials/paige/site-header.html
+++ b/layouts/partials/paige/site-header.html
@@ -1,7 +1,32 @@
{{ $page := . }}
+{{ $basepath := path.Clean (urls.Parse (relLangURL "")).Path }}
{{ $description := $page.Param "paige.site_description" }}
+{{ $links := false }}
+{{ $pills := false }}
+{{ $tabs := false }}
{{ $title := $page.Param "paige.site_title" }}
+{{ $underline := false }}
+
+{{ if eq $basepath "/" }}
+ {{ $basepath = "" }}
+{{ end }}
+
+{{ $pagepath := strings.TrimPrefix $basepath $page.RelPermalink }}
+
+{{ with $page.Param "paige.menu_style" }}
+ {{ if eq . "pills" }}
+ {{ $pills = true }}
+ {{ else if eq . "tabs" }}
+ {{ $tabs = true }}
+ {{ else if eq . "underline" }}
+ {{ $underline = true }}
+ {{ else }}
+ {{ $links = true }}
+ {{ end }}
+{{ else }}
+ {{ $links = true }}
+{{ end }}
{{ if or $page.Ancestors site.Menus.main }}