Skip to content

Instantly share code, notes, and snippets.

@warnakey
Last active April 15, 2019 17:24
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 warnakey/5ada39a24ccc98c2b889e84c44d4a468 to your computer and use it in GitHub Desktop.
Save warnakey/5ada39a24ccc98c2b889e84c44d4a468 to your computer and use it in GitHub Desktop.
Blog Homepage Schema Example in JSON-LD
<!-- This schema ONLY goes on the blog homepage (not individual blogs) -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Blog",
"name": "Example Law Blog",
"url": "https://www.examplelaw.com/blog/",
"description": "Read the blog of Example Law Firm, a divorce lawyer firm, to learn about the latest valuable information in our industry.",
"sameAs": [
"https://www.facebook.com/examplelaw/",
"https://twitter.com/examplelaw",
"https://www.yelp.com/biz/examplelaw"
],
"publisher": {
"@type": "Organization",
"name": "Example Law Firm"
}
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment