Created
July 10, 2016 23:10
-
-
Save keithmancuso/b37d728c50e60f1390df5df66b4a3696 to your computer and use it in GitHub Desktop.
Default SEOMatic tags for layout file
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% set seomaticMeta = { | |
seoTitle: seoTitle ?? seomaticMeta.seoTitle, | |
seoDescription: seoDescription ?? seomaticMeta.seoDescription, | |
seoKeywords: seomaticMeta.seoKeywords, | |
seoImage: seoImage ?? seomaticMeta.seoImage, | |
canonicalUrl: canonicalUrl ?? seomaticMeta.canonicalUrl, | |
twitter: { | |
card: seomaticMeta.twitter.card, | |
site: seomaticMeta.twitter.site, | |
creator: seomaticMeta.twitter.creator, | |
title: seoTitle ?? seomaticMeta.seoTitle, | |
description: seoDescription ?? seomaticMeta.seoDescription, | |
image: seoImage ?? seomaticMeta.seoImage | |
}, | |
og: { | |
type: seomaticMeta.og.type, | |
locale: seomaticMeta.og.locale, | |
url: canonicalUrl ?? seomaticMeta.canonicalUrl, | |
title: seoTitle ?? seomaticMeta.seoTitle, | |
description: seoDescription ?? seomaticMeta.seoDescription, | |
image: seoImage ?? seomaticMeta.seoImage, | |
site_name: seomaticMeta.og.site_name, | |
see_also: seomaticMeta.og.see_also | |
} | |
} %} | |
{% hook 'seomaticRender' %} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment