bugfixing

This commit is contained in:
MuslemRahimi 2025-04-15 12:10:11 +02:00
parent 739fee2c6d
commit fb577fdfad

View File

@ -7,37 +7,44 @@
</script>
{@html `<script type="application/ld+json">
[{
[
{
"@context": "https://schema.org",
"@type": "Article",
"headline": "${title}",
${
image &&
`"image": [
image
? `"image": [
"${image}"
],`
: ""
}
"datePublished": "${datePublished}",
"dateModified": "${dateModified}",
"author": [{
"author": [
{
"@type": "Person",
"name": "Jack Landon",
"url": "https://stocknear.com/about"
}]
}
]
},
{
"@context": "https://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [{
"itemListElement": [
{
"@type": "ListItem",
"position": 1,
"name": "Blog",
"item": "https://stocknear.com/${url}
},{
"item": "https://stocknear.com/${url}"
},
{
"@type": "ListItem",
"position": 2,
"name": "${title}"
}]
}
]
}
]
</script>`}