diff --git a/layouts/partials/paige/resource.html b/layouts/partials/paige/func-resource.html
similarity index 78%
rename from layouts/partials/paige/resource.html
rename to layouts/partials/paige/func-resource.html
index 32621d69..2ac7f8fb 100644
--- a/layouts/partials/paige/resource.html
+++ b/layouts/partials/paige/func-resource.html
@@ -8,11 +8,11 @@
{{ if (urls.Parse $url).Scheme }}
{{ with try (resources.GetRemote $url) }}
{{ with .Err }}
- {{ errorf "layouts/partials/paige/resource.html: cannot get remote resource %q: %v" $url . }}
+ {{ errorf "layouts/partials/paige/func-resource.html: cannot get remote resource %q: %v" $url . }}
{{ else with .Value }}
{{ $result = . }}
{{ else }}
- {{ errorf "layouts/partials/paige/resource.html: remote resource %q not found" $url }}
+ {{ errorf "layouts/partials/paige/func-resource.html: remote resource %q not found" $url }}
{{ end }}
{{ end }}
{{ end }}
diff --git a/layouts/partials/paige/image.html b/layouts/partials/paige/image.html
index f69f8576..76ec850d 100644
--- a/layouts/partials/paige/image.html
+++ b/layouts/partials/paige/image.html
@@ -69,7 +69,7 @@
{{ $style = delimit ($style | uniq | sort) "; " }}
{{ if and (not $resource) $src }}
- {{ $resource = partial "paige/resource.html" (dict "page" $page "url" $src) }}
+ {{ $resource = partial "paige/func-resource.html" (dict "page" $page "url" $src) }}
{{ end }}
{{ if $resource }}
diff --git a/layouts/partials/paige/tag-link.html b/layouts/partials/paige/tag-link.html
index fada8f24..f4d3cde3 100644
--- a/layouts/partials/paige/tag-link.html
+++ b/layouts/partials/paige/tag-link.html
@@ -17,7 +17,7 @@
{{ errorf "layouts/partials/paige/tag-link.html: no href" }}
{{ end }}
-{{ with partial "paige/resource.html" (dict "page" $page "url" $href) }}
+{{ with partial "paige/func-resource.html" (dict "page" $page "url" $href) }}
{{ $resource := . }}
{{ if $template }}
diff --git a/layouts/partials/paige/tag-script.html b/layouts/partials/paige/tag-script.html
index 867c1f45..834adf11 100644
--- a/layouts/partials/paige/tag-script.html
+++ b/layouts/partials/paige/tag-script.html
@@ -13,7 +13,7 @@
{{ errorf "layouts/partials/paige/tag-script.html: no src" }}
{{ end }}
-{{ with partial "paige/resource.html" (dict "page" $page "url" $src) }}
+{{ with partial "paige/func-resource.html" (dict "page" $page "url" $src) }}
{{ $resource := . | minify | fingerprint }}
{{ $integrity = $resource.Data.Integrity }}
{{ $src = $resource.RelPermalink }}