Fixed condition requiring tagline or description

This commit is contained in:
uy-rrodriguez 2022-10-18 18:52:15 +01:00 committed by GitHub
parent 6005f93781
commit 0ebb50b9a8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@ module Jekyll
@title ||= begin
if site_title && page_title != site_title
page_title + TITLE_SEPARATOR + site_title
elsif site_description && site_title
elsif site_tagline_or_description && site_title
site_title + TITLE_SEPARATOR + site_tagline_or_description
else
page_title || site_title