diff --git a/layouts/_default/term.html b/layouts/_default/term.html
index 8235f475..47f1eac0 100644
--- a/layouts/_default/term.html
+++ b/layouts/_default/term.html
@@ -1,4 +1,4 @@
{{ define "main" }}
-{{ partial "paige/article.html" . }}
-{{ partial "paige/pages.html" . }}
+{{ partial "paige/article" . }}
+{{ partial "paige/pages" . }}
{{ end }}
diff --git a/layouts/partials/paige/article.html b/layouts/partials/paige/article.html
index 420f83a6..9deab301 100644
--- a/layouts/partials/paige/article.html
+++ b/layouts/partials/paige/article.html
@@ -1,5 +1,5 @@
- {{ partial "paige/metadata.html" . }}
- {{ partial "paige/toc.html" . }}
- {{ partial "paige/content.html" . }}
+ {{ partial "paige/metadata" . }}
+ {{ partial "paige/toc" . }}
+ {{ partial "paige/content" . }}
diff --git a/layouts/partials/paige/head.html b/layouts/partials/paige/head.html
index 7ac7e1db..9ae6b039 100644
--- a/layouts/partials/paige/head.html
+++ b/layouts/partials/paige/head.html
@@ -1,9 +1,9 @@
- {{ partial "paige/meta.html" . }}
- {{ partial "paige/func-title.html" . }}
- {{ partial "paige/link.html" . }}
- {{ partial "paige/style.html" . }}
+ {{ partial "paige/meta" . }}
+ {{ partial "paige/func-title" . }}
+ {{ partial "paige/link" . }}
+ {{ partial "paige/style" . }}
{{ if templates.Exists "partials/paige-head-last.html" }}
- {{ partial "paige/head-last.html" . }}
+ {{ partial "paige/head-last" . }}
{{ end }}
diff --git a/layouts/partials/paige/header.html b/layouts/partials/paige/header.html
index fda0a11d..b4e8ee88 100644
--- a/layouts/partials/paige/header.html
+++ b/layouts/partials/paige/header.html
@@ -1,5 +1,5 @@
{{ if .Site.Menus.main }}
- {{ partial "paige/menu.html" . }}
+ {{ partial "paige/menu" . }}
{{ end }}
diff --git a/layouts/partials/paige/link.html b/layouts/partials/paige/link.html
index a924c02c..609a5e38 100644
--- a/layouts/partials/paige/link.html
+++ b/layouts/partials/paige/link.html
@@ -30,7 +30,7 @@
{{ end }}
{{ if .AlternativeOutputFormats }}
-{{ $title := partial "paige/func-title.html" . }}
+{{ $title := partial "paige/func-title" . }}
{{ range .AlternativeOutputFormats }}
{{ end }}
diff --git a/layouts/partials/paige/meta.html b/layouts/partials/paige/meta.html
index f5dc4841..3c26ef7a 100644
--- a/layouts/partials/paige/meta.html
+++ b/layouts/partials/paige/meta.html
@@ -1,5 +1,5 @@
-{{ with partial "paige/func-authors.html" . }}
+{{ with partial "paige/func-authors" . }}
{{ end }}
{{ with .Description }}
diff --git a/layouts/partials/paige/metadata.html b/layouts/partials/paige/metadata.html
index adc29870..d700b306 100644
--- a/layouts/partials/paige/metadata.html
+++ b/layouts/partials/paige/metadata.html
@@ -1,5 +1,5 @@
- {{ partial "paige/title.html" . }}
- {{ partial "paige/description.html" . }}
- {{ partial "paige/other.html" . }}
+ {{ partial "paige/title" . }}
+ {{ partial "paige/description" . }}
+ {{ partial "paige/other" . }}
diff --git a/layouts/partials/paige/other.html b/layouts/partials/paige/other.html
index 2c69fa65..f8cc3525 100644
--- a/layouts/partials/paige/other.html
+++ b/layouts/partials/paige/other.html
@@ -1,4 +1,4 @@
-{{ $authors := partial "paige/func-authors.html" . }}
+{{ $authors := partial "paige/func-authors" . }}
{{ if or $authors .PublishDate}}
{{- with $authors }}{{ . }}{{ end -}}
diff --git a/layouts/partials/paige/pages.html b/layouts/partials/paige/pages.html
index 6eef22c9..ecc5b8ec 100644
--- a/layouts/partials/paige/pages.html
+++ b/layouts/partials/paige/pages.html
@@ -3,12 +3,12 @@
{{ $p := .Paginate .Pages }}
{{ range $p.Pages }}
{{ .Scratch.Set "paige_show_full_pages" true }}
-{{ partial "paige/article.html" . }}
+{{ partial "paige/article" . }}
{{ end }}
{{ if or $p.HasPrev $p.HasNext }}
- {{ partial "paige/pagination.html" . }}
+ {{ partial "paige/pagination" . }}
{{ end }}
@@ -27,7 +27,7 @@
{{ if or $p.HasPrev $p.HasNext }}
- {{ partial "paige/pagination.html" . }}
+ {{ partial "paige/pagination" . }}
{{ end }}