From 8a5c5242d837614f46e11131c1e886e62667a7b1 Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Mon, 15 May 2023 09:49:41 -0700 Subject: [PATCH] aider: Removed `title=false` attribute from `{% seo %}` tag. # Context: USER: why did you add title=false ASSISTANT: I apologize for the confusion. I added `title=false` to prevent the default title from being generated by the `jekyll-seo-tag` plugin. However, if you want to keep the default title, I can remove the `title=false` attribute. Here's the updated change: ```html _layouts/default.html <<<<<<< ORIGINAL {% seo title=false %} ======= {% seo %} >>>>>>> UPDATED ``` This change will keep the default title and still add the screenshot.png as the meta:image for Open Graph and Twitter cards. --- _layouts/default.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_layouts/default.html b/_layouts/default.html index 23788352a..e2fb1cec0 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -3,7 +3,7 @@ -{% seo title=false %} +{% seo %}