Skip to content

Instantly share code, notes, and snippets.

@Maxim-Kolmogorov
Created August 6, 2020 13:11
Show Gist options
  • Save Maxim-Kolmogorov/4f36aa375b88e923530ebe3c763dd574 to your computer and use it in GitHub Desktop.
Save Maxim-Kolmogorov/4f36aa375b88e923530ebe3c763dd574 to your computer and use it in GitHub Desktop.
Пример микроразметки JSON-LD
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "Organization",
"url": "http://www.example.com",
"logo": "http://www.example.com/images/logo.png"
}
</script>
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "ItemList",
"itemListOrder": "http://schema.org/ItemListOrderDescending",
"itemListElement": [
{
"@type": "ListItem",
"position": 4,
"item": {
"@type": "Product",
"name": "Настройка рекламы",
"url": "https://vverh.digital/nastroyka-kontekstnoy-reklamy",
"image": "https://vverh.digital/front/img/%D1%80%D0%B5%D0%BA%D0%BB%D0%B0%D0%BC%D0%B0.png",
"offers": {
"@type": "Offer",
"availability": "http://schema.org/InStock",
"price": "2000.00",
"priceCurrency": "RUB"
}
}
}
]
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment