Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions lib/jekyll-seo-tag/drop.rb
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,10 @@ def page_title
title = format_string(page["title"])
title_category = format_string(page["title_category"])
@page_title = if title && title_category && title != title_category
title + TITLE_SEPARATOR + title_category
else
title || title_category || site_title
end
title + TITLE_SEPARATOR + title_category
else
title || title_category || site_title
end
end

def site_tagline_or_description
Expand Down