diff --git a/exampleSite/hugo.toml b/exampleSite/hugo.toml
index b6c70c0..9961108 100644
--- a/exampleSite/hugo.toml
+++ b/exampleSite/hugo.toml
@@ -63,6 +63,10 @@ enableEmoji = true
# Options used for automatic image generation. see: https://gohugo.io/content-management/image-processing/
image_options = "webp q90 lanczos photo"
+
+ # Use "page_title | site_title" for
tags
+ # e.g. Legal | Jane Doe - Nutrition Coach & Chef Consultant
+ combine_page_and_site_title = false
[params.footer]
# Show contact icons for email/phone (if specified) in the footer of the page
diff --git a/layouts/partials/head.html b/layouts/partials/head.html
index 2b83b7b..e349d0a 100644
--- a/layouts/partials/head.html
+++ b/layouts/partials/head.html
@@ -1,9 +1,13 @@
+{{ if and site.Params.combine_page_and_site_title .Title .Site.Title }}
+{{ .Title | plainify }} | {{ .Site.Title | plainify }}
+{{ else }}
{{ with or .Title .Site.Title | plainify }}
{{ . }}
{{ end }}
+{{ end }}
{{ with resources.Get .Site.Params.favicon }}
{{ end }}