From edbb7bd5310bcd400b4a7f1de5815237f10bddb2 Mon Sep 17 00:00:00 2001 From: Pat Dryburgh Date: Sun, 12 Aug 2018 14:46:06 -0700 Subject: [PATCH] fix browser title for title-less posts --- _layouts/default.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_layouts/default.html b/_layouts/default.html index 3937cbb..f3d946b 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -6,7 +6,7 @@ - {{ site.title }}{% if page.title %} — {{ page.title }}{% endif %} + {{ site.title }}{% if page.title and page.title != "" %} — {{ page.title }}{% endif %}