Add more features for SEO
This commit is contained in:
126
layouts/partials/seo/schema-local.html
Normal file
126
layouts/partials/seo/schema-local.html
Normal file
@@ -0,0 +1,126 @@
|
||||
{{- /* Local SEO Schema.org markup for French market */ -}}
|
||||
|
||||
<script type="application/ld+json">
|
||||
{
|
||||
"@context": "https://schema.org",
|
||||
"@type": "Organization",
|
||||
"name": "Mistergeek",
|
||||
"url": "https://www.mistergeek.net",
|
||||
"logo": {
|
||||
"@type": "ImageObject",
|
||||
"url": "https://www.mistergeek.net/assets/images/logo.png",
|
||||
"width": 400,
|
||||
"height": 400
|
||||
},
|
||||
"description": "Mistergeek - Tutoriels et guides en informatique et technologie",
|
||||
"founder": {
|
||||
"@type": "Person",
|
||||
"name": "Mistergeek",
|
||||
"url": "https://www.mistergeek.net"
|
||||
},
|
||||
"foundingDate": "2020",
|
||||
"address": {
|
||||
"@type": "PostalAddress",
|
||||
"addressCountry": "FR",
|
||||
"addressRegion": "Île-de-France",
|
||||
"addressLocality": "Paris",
|
||||
"postalCode": "75000"
|
||||
},
|
||||
"contactPoint": {
|
||||
"@type": "ContactPoint",
|
||||
"contactType": "support",
|
||||
"email": "contact@mistergeek.net",
|
||||
"availableLanguage": ["French"],
|
||||
"areaServed": ["FR", "BE", "CA", "CH", "LU"],
|
||||
"hoursAvailable": {
|
||||
"@type": "OpeningHoursSpecification",
|
||||
"dayOfWeek": ["Monday", "Tuesday", "Wednesday", "Thursday", "Friday"],
|
||||
"opens": "09:00",
|
||||
"closes": "18:00"
|
||||
}
|
||||
},
|
||||
"sameAs": [
|
||||
"https://twitter.com/mistergeekfrance",
|
||||
"https://www.linkedin.com/in/mistergeek",
|
||||
"https://www.youtube.com/@mistergeek",
|
||||
"https://github.com/mistergeek",
|
||||
"https://www.facebook.com/mistergeek.fr"
|
||||
],
|
||||
"hasOfferCatalog": {
|
||||
"@type": "OfferCatalog",
|
||||
"name": "Tutoriels Informatique",
|
||||
"itemListElement": [
|
||||
{
|
||||
"@type": "Offer",
|
||||
"itemOffered": {
|
||||
"@type": "Service",
|
||||
"name": "Tutoriels WordPress",
|
||||
"description": "Guides complets pour créer et gérer un site WordPress"
|
||||
}
|
||||
},
|
||||
{
|
||||
"@type": "Offer",
|
||||
"itemOffered": {
|
||||
"@type": "Service",
|
||||
"name": "Tutoriels Sécurité",
|
||||
"description": "Apprenez à sécuriser vos systèmes et données"
|
||||
}
|
||||
},
|
||||
{
|
||||
"@type": "Offer",
|
||||
"itemOffered": {
|
||||
"@type": "Service",
|
||||
"name": "Comparatifs Logiciels",
|
||||
"description": "Analyses détaillées des meilleurs logiciels"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
"potentialAction": {
|
||||
"@type": "SearchAction",
|
||||
"target": {
|
||||
"@type": "EntryPoint",
|
||||
"urlTemplate": "https://www.mistergeek.net/search?q={search_term_string}"
|
||||
},
|
||||
"query-input": "required name=search_term_string"
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<!-- Local Business Schema for Google My Business -->
|
||||
<script type="application/ld+json">
|
||||
{
|
||||
"@context": "https://schema.org",
|
||||
"@type": "EducationalOrganization",
|
||||
"name": "Mistergeek Academy",
|
||||
"url": "https://www.mistergeek.net",
|
||||
"logo": "https://www.mistergeek.net/assets/images/logo.png",
|
||||
"description": "Formation et tutoriels en informatique et technologie",
|
||||
"address": {
|
||||
"@type": "PostalAddress",
|
||||
"streetAddress": "123 Rue de l'Informatique",
|
||||
"addressLocality": "Paris",
|
||||
"addressRegion": "Île-de-France",
|
||||
"postalCode": "75000",
|
||||
"addressCountry": "FR"
|
||||
},
|
||||
"geo": {
|
||||
"@type": "GeoCoordinates",
|
||||
"latitude": 48.8566,
|
||||
"longitude": 2.3522
|
||||
},
|
||||
"telephone": "+33-1-23-45-67-89",
|
||||
"email": "contact@mistergeek.net",
|
||||
"openingHoursSpecification": [
|
||||
{
|
||||
"@type": "OpeningHoursSpecification",
|
||||
"dayOfWeek": ["Monday", "Tuesday", "Wednesday", "Thursday", "Friday"],
|
||||
"opens": "09:00",
|
||||
"closes": "18:00"
|
||||
}
|
||||
],
|
||||
"priceRange": "€",
|
||||
"currenciesAccepted": "EUR",
|
||||
"paymentAccepted": "Cash, Credit Card, PayPal"
|
||||
}
|
||||
</script>
|
||||
Reference in New Issue
Block a user