Skip to content

Instantly share code, notes, and snippets.

@daliborgogic
Last active December 23, 2018 16:27
Show Gist options
  • Save daliborgogic/c97d4840ea9e6807bc9bd53b7a7dfa9f to your computer and use it in GitHub Desktop.
Save daliborgogic/c97d4840ea9e6807bc9bd53b7a7dfa9f to your computer and use it in GitHub Desktop.
Schema.org
<script type="application/ld+json">
{
"@context": "https:\/\/schema.org",
"@type":"Person",
"url":"https:\/\/johndoe.com\/",
"sameAs":[
"https:\/\/www.facebook.com\/johndoe\/",
"https:\/\/www.instagram.com\/johndoe\/",
"https:\/\/twitter.com\/johndoe\/"
],
"@id":"#person",
"name":"John Doe"
}
</script>
<script type="application/ld+json">
{
"@context":"https:\/\/schema.org",
"@type":"WebSite",
"@id":"#website",
"url":"https:\/\/johndoe.com\/",
"name":"John Doe",
"potentialAction":{
"@type":"SearchAction",
"target":"https:\/\/johndoe.com\/?s={search_term_string}",
"query-input":"required name=search_term_string"
}
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment