109 lines
2.9 KiB
HTML
109 lines
2.9 KiB
HTML
{% comment %}
|
|
Structured Data Template (JSON-LD)
|
|
Verwendung: {% include 'seo/structured_data.html' with structured_data=structured_data %}
|
|
{% endcomment %}
|
|
|
|
{% if structured_data %}
|
|
<script type="application/ld+json">
|
|
{{ structured_data|safe }}
|
|
</script>
|
|
{% endif %}
|
|
|
|
<!-- Organization Structured Data (immer vorhanden) -->
|
|
<script type="application/ld+json">
|
|
{
|
|
"@context": "https://schema.org",
|
|
"@type": "Organization",
|
|
"name": "Kasico",
|
|
"url": "{{ request.build_absolute_uri }}",
|
|
"logo": "{{ request.build_absolute_uri }}/static/images/kasico-logo.svg",
|
|
"description": "Premium Fursuit Shop - Handgefertigte Fursuits made in Germany",
|
|
"address": {
|
|
"@type": "PostalAddress",
|
|
"addressCountry": "DE",
|
|
"addressLocality": "Germany"
|
|
},
|
|
"contactPoint": {
|
|
"@type": "ContactPoint",
|
|
"contactType": "customer service",
|
|
"email": "info@kasico.de",
|
|
"availableLanguage": ["German", "English"]
|
|
},
|
|
"sameAs": [
|
|
"https://twitter.com/kasico_fursuits",
|
|
"https://www.instagram.com/kasico_fursuits",
|
|
"https://www.facebook.com/kasico.fursuits"
|
|
]
|
|
}
|
|
</script>
|
|
|
|
<!-- Website Structured Data (immer vorhanden) -->
|
|
<script type="application/ld+json">
|
|
{
|
|
"@context": "https://schema.org",
|
|
"@type": "WebSite",
|
|
"name": "Kasico Fursuit Shop",
|
|
"url": "{{ request.build_absolute_uri }}",
|
|
"description": "Premium Fursuit Shop - Handgefertigte Fursuits made in Germany",
|
|
"potentialAction": {
|
|
"@type": "SearchAction",
|
|
"target": "{{ request.build_absolute_uri }}/products/search/?q={search_term_string}",
|
|
"query-input": "required name=search_term_string"
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<!-- Local Business Structured Data -->
|
|
<script type="application/ld+json">
|
|
{
|
|
"@context": "https://schema.org",
|
|
"@type": "LocalBusiness",
|
|
"name": "Kasico",
|
|
"description": "Premium Fursuit Shop - Handgefertigte Fursuits made in Germany",
|
|
"url": "{{ request.build_absolute_uri }}",
|
|
"telephone": "+49-XXX-XXXXXXX",
|
|
"email": "info@kasico.de",
|
|
"address": {
|
|
"@type": "PostalAddress",
|
|
"addressCountry": "DE",
|
|
"addressLocality": "Germany"
|
|
},
|
|
"geo": {
|
|
"@type": "GeoCoordinates",
|
|
"latitude": "51.1657",
|
|
"longitude": "10.4515"
|
|
},
|
|
"openingHours": "Mo-Fr 09:00-18:00",
|
|
"priceRange": "€€€",
|
|
"currenciesAccepted": "EUR",
|
|
"paymentAccepted": "Cash, Credit Card, PayPal, Bank Transfer",
|
|
"areaServed": "Worldwide",
|
|
"hasOfferCatalog": {
|
|
"@type": "OfferCatalog",
|
|
"name": "Fursuit Collection",
|
|
"itemListElement": [
|
|
{
|
|
"@type": "Offer",
|
|
"itemOffered": {
|
|
"@type": "Product",
|
|
"name": "Custom Fursuits"
|
|
}
|
|
},
|
|
{
|
|
"@type": "Offer",
|
|
"itemOffered": {
|
|
"@type": "Product",
|
|
"name": "Fursuit Headsets"
|
|
}
|
|
},
|
|
{
|
|
"@type": "Offer",
|
|
"itemOffered": {
|
|
"@type": "Product",
|
|
"name": "Fursuit Fullsuits"
|
|
}
|
|
}
|
|
]
|
|
}
|
|
}
|
|
</script> |