From f1bf99c4baa6cee04b994ac698fb213d17ccaec0 Mon Sep 17 00:00:00 2001 From: ViViDboarder Date: Tue, 13 Mar 2018 13:02:34 -0700 Subject: [PATCH] Append blog title to post titles to improve SEO --- default.hbs | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/default.hbs b/default.hbs index 024bc99..3f0a188 100644 --- a/default.hbs +++ b/default.hbs @@ -7,7 +7,13 @@ {{!-- Base Meta --}} - {{meta_title}} + + {{#is "post, page"}} + {{meta_title}} - {{@blog.title}} + {{else}} + {{meta_title}} + {{/is}} +