Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save keithmancuso/b37d728c50e60f1390df5df66b4a3696 to your computer and use it in GitHub Desktop.
Save keithmancuso/b37d728c50e60f1390df5df66b4a3696 to your computer and use it in GitHub Desktop.
Default SEOMatic tags for layout file
{% 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