feat: if seo image is specified - it can be different from image on page, otherwise page image is used for seo:image tags in HEAD section

This commit is contained in:
Roman Tsypuk 2023-03-25 19:34:31 +02:00
parent db0e639259
commit 60073840cb
2 changed files with 2 additions and 2 deletions

View File

@ -55,7 +55,7 @@ module Jekyll
def raw_path
@raw_path ||= begin
image_hash["path"] || image_hash["facebook"] || image_hash["twitter"]
image_hash["twitter"] || image_hash["facebook"] || image_hash["path"]
end
end

View File

@ -5,6 +5,6 @@ module Liquid; class Tag; end; end
module Jekyll
class SeoTag < Liquid::Tag
VERSION = "2.8.0"
VERSION = "2.8.1"
end
end