diff --git a/layouts/_default/rss.xml b/layouts/_default/rss.xml
index b3880937..76b67fa3 100644
--- a/layouts/_default/rss.xml
+++ b/layouts/_default/rss.xml
@@ -3,7 +3,7 @@
{{ $limit := site.Config.Services.RSS.Limit }}
{{ $pages := "" }}
{{ $pagesource := cond $page.IsHome site $page }}
-{{ $title := partial "paige/func-title.html" $page }}
+{{ $title := partial "paige/title.html" $page }}
{{ if or $page.IsHome $page.IsSection }}
{{ $pages = $pagesource.RegularPages }}
diff --git a/layouts/partials/paige/head.html b/layouts/partials/paige/head.html
index 8c94844a..fbffcc75 100644
--- a/layouts/partials/paige/head.html
+++ b/layouts/partials/paige/head.html
@@ -7,7 +7,7 @@
{{ partial "paige/metas.html" $page }}
-
{{ partial "paige/func-title.html" $page }}
+ {{ partial "paige/title.html" $page }}
{{ partial "paige/links.html" $page }}
{{ partial "paige/style.html" $page }}
diff --git a/layouts/partials/paige/links.html b/layouts/partials/paige/links.html
index e08f3454..a9eed498 100644
--- a/layouts/partials/paige/links.html
+++ b/layouts/partials/paige/links.html
@@ -26,7 +26,7 @@
{{ end }}
{{ if .AlternativeOutputFormats }}
- {{ $title := partial "paige/func-title.html" $page }}
+ {{ $title := partial "paige/title.html" $page }}
{{ range .AlternativeOutputFormats }}
{{ end }}
diff --git a/layouts/partials/paige/func-title.html b/layouts/partials/paige/title.html
similarity index 100%
rename from layouts/partials/paige/func-title.html
rename to layouts/partials/paige/title.html