summaryrefslogtreecommitdiffstats
path: root/layouts
diff options
context:
space:
mode:
Diffstat (limited to 'layouts')
-rw-r--r--layouts/_default/single.html2
-rw-r--r--layouts/page/single.html2
-rw-r--r--layouts/partials/page/single.html2
3 files changed, 3 insertions, 3 deletions
diff --git a/layouts/_default/single.html b/layouts/_default/single.html
index f327cbc..9c4a966 100644
--- a/layouts/_default/single.html
+++ b/layouts/_default/single.html
@@ -3,7 +3,7 @@
<article class="{{ partial "post-class.html" . }}" role="document"{{ with .Params.lang }} lang="{{ . }}"{{ end }}>
<header>
<h1 class="text-title">
- {{ .Params.caption | default .Title }}
+ {{ .Params.pageTitle | default .Title }}
</h1>
<p class="byline">
{{ if in (slice "drama" "narrative" "poem") $postType }}
diff --git a/layouts/page/single.html b/layouts/page/single.html
index cb2faba..be12179 100644
--- a/layouts/page/single.html
+++ b/layouts/page/single.html
@@ -3,7 +3,7 @@
<article class="{{ partial "post-class.html" . }}" role="document"{{ with .Params.lang }} lang="{{ . }}"{{ end }}>
<header>
<h1 class="text-title">
- {{ .Params.caption | default .Title }}
+ {{ .Params.pageTitle | default .Title }}
</h1>
</header>
diff --git a/layouts/partials/page/single.html b/layouts/partials/page/single.html
index ca1180d..50d96cc 100644
--- a/layouts/partials/page/single.html
+++ b/layouts/partials/page/single.html
@@ -2,7 +2,7 @@
<article class="{{ partial "post-class.html" . }}" role="document" id="page-{{ .File.TranslationBaseName | lower }}"{{ with .Params.lang}} lang="{{ . }}"{{ end }}>
<header>
<h1 class="page-title">
- {{ .Params.caption | default .Title }}
+ {{ .Params.pageTitle | default .Title }}
</h1>
</header>