Open Graph Protocol¶
This is required to make the site more SEO friendly for social media sites (more in the Meta related sites). We don't need to config all meta tags as most of them are very specific to certain requirements.
The following is a good set of tags to start from.
<meta property="og:url" content={canonicalURL} />
<meta property="og:title" content={title} />
<meta property="og:description" content={description} />
<meta property="og:image" content={image} />
<meta property="og:image:alt" content={imageAlt} />