From bb202c818dc447d26eafc8c72fe91bf6fd7e88ff Mon Sep 17 00:00:00 2001 From: Jason Thai Date: Fri, 9 Aug 2019 06:08:02 -0700 Subject: [PATCH] Fix default site.author in seo.html (#2230) --- _includes/seo.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_includes/seo.html b/_includes/seo.html index d4a762a..83a8d55 100644 --- a/_includes/seo.html +++ b/_includes/seo.html @@ -25,7 +25,7 @@ {%- assign seo_description = seo_description | markdownify | strip_html | strip_newlines | escape_once -%} {%- endif -%} -{%- assign author = page.author | default: page.authors[0] | default: site:author -%} +{%- assign author = page.author | default: page.authors[0] | default: site.author -%} {%- assign author = site.data.authors[author] | default: author -%} {%- if author.twitter -%} -- 2.43.0