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