Last active
September 14, 2023 12:29
-
-
Save garethredfern/e81bfda1a10d08e2277cdd1d7c660034 to your computer and use it in GitHub Desktop.
The full head tag for a Nuxt website, including social media and SEO tags. Put this in your _slug.vue file.
This file contains hidden or 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
head() { | |
return { | |
title: this.article.title, | |
meta: [ | |
{ | |
hid: "description", | |
name: "description", | |
content: this.article.description, | |
}, | |
{ | |
hid: "og:title", | |
name: "og:title", | |
content: this.article.title, | |
}, | |
{ | |
hid: "og:description", | |
name: "og:description", | |
content: this.article.description, | |
}, | |
{ | |
hid: "og:type", | |
property: "og:type", | |
content: "article", | |
}, | |
{ | |
hid: "og:url", | |
property: "og:url", | |
content: `https://bobross.com/articles/${this.$route.params.slug}`, | |
}, | |
{ | |
hid: "twitter:url", | |
name: "twitter:url", | |
content: `https://bobross.com/articles/${this.$route.params.slug}`, | |
}, | |
{ | |
hid: "twitter:title", | |
name: "twitter:title", | |
content: this.article.title, | |
}, | |
{ | |
hid: "twitter:description", | |
name: "twitter:description", | |
content: this.article.description, | |
}, | |
{ | |
hid: "twitter:image", | |
name: "twitter:image", | |
content: this.article.image, | |
}, | |
{ | |
hid: "og:image", | |
property: "og:image", | |
content: this.article.image, | |
}, | |
{ | |
property: "article:published_time", | |
content: this.article.createdAt, | |
}, | |
{ | |
property: "article:modified_time", | |
content: this.article.updatedAt, | |
}, | |
{ | |
property: "article:tag", | |
content: this.article.tags ? this.article.tags.toString() : "", | |
}, | |
{ name: "twitter:label1", content: "Written by" }, | |
{ name: "twitter:data1", content: "Bob Ross" }, | |
{ name: "twitter:label2", content: "Filed under" }, | |
{ | |
name: "twitter:data2", | |
content: this.article.tags ? this.article.tags.toString() : "", | |
}, | |
], | |
link: [ | |
{ | |
hid: "canonical", | |
rel: "canonical", | |
href: `https://bobross.com/articles/${this.$route.params.slug}`, | |
}, | |
], | |
}; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment