feat: improve SEO
This commit is contained in:
@@ -3,12 +3,76 @@
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<!-- Title & Description -->
|
||||
<title>{% if title %}{{ title }} | {{ site.name }}{% else %}{{ site.name }} | {{ site.shortName }}{% endif %}</title>
|
||||
<meta name="description" content="{{ description or site.description }}">
|
||||
<meta name="keywords" content="OKI, ORGANISATION KA INTERNATIONALE, Fédiverse, PeerTube, Pleroma, Funkwhale, Castopod, Guadeloupe, Martinique, logiciel libre, GAFAM, alternatives libres, langues créoles, médias libres">
|
||||
<meta name="author" content="{{ site.name }}">
|
||||
|
||||
<!-- Canonical URL -->
|
||||
<link rel="canonical" href="https://o-k-i.net{{ page.url or '/' }}">
|
||||
|
||||
<!-- Open Graph / Facebook -->
|
||||
<meta property="og:type" content="website">
|
||||
<meta property="og:url" content="https://o-k-i.net{{ page.url or '/' }}">
|
||||
<meta property="og:title" content="{% if title %}{{ title }}{% else %}{{ site.name }}{% endif %}">
|
||||
<meta property="og:description" content="{{ description or site.description }}">
|
||||
<meta property="og:image" content="https://o-k-i.net/assets/images/logo-512x512.png">
|
||||
<meta property="og:image:width" content="512">
|
||||
<meta property="og:image:height" content="512">
|
||||
<meta property="og:locale" content="fr_FR">
|
||||
<meta property="og:site_name" content="{{ site.name }}">
|
||||
|
||||
<!-- Twitter Card -->
|
||||
<meta name="twitter:card" content="summary_large_image">
|
||||
<meta name="twitter:url" content="https://o-k-i.net{{ page.url or '/' }}">
|
||||
<meta name="twitter:title" content="{% if title %}{{ title }}{% else %}{{ site.name }}{% endif %}">
|
||||
<meta name="twitter:description" content="{{ description or site.description }}">
|
||||
<meta name="twitter:image" content="https://o-k-i.net/assets/images/logo-512x512.png">
|
||||
|
||||
<!-- Favicons -->
|
||||
<link rel="icon" type="image/x-icon" href="/assets/images/favicon.ico">
|
||||
<link rel="icon" type="image/png" sizes="512x512" href="/assets/images/logo-512x512.png">
|
||||
<link rel="apple-touch-icon" href="/assets/images/logo-512x512.png">
|
||||
|
||||
<!-- Stylesheet -->
|
||||
<link rel="stylesheet" href="/assets/css/styles.css">
|
||||
|
||||
<!-- JSON-LD Structured Data -->
|
||||
<script type="application/ld+json">
|
||||
{
|
||||
"@context": "https://schema.org",
|
||||
"@type": "Organization",
|
||||
"name": "{{ site.name }}",
|
||||
"alternateName": "{{ site.shortName }}",
|
||||
"url": "https://o-k-i.net",
|
||||
"logo": "https://o-k-i.net/assets/images/logo-512x512.png",
|
||||
"description": "{{ site.description }}",
|
||||
"address": {
|
||||
"@type": "PostalAddress",
|
||||
"streetAddress": "36 Rue Lethière",
|
||||
"addressLocality": "Basse-Terre",
|
||||
"postalCode": "97100",
|
||||
"addressCountry": "GP"
|
||||
},
|
||||
"contactPoint": {
|
||||
"@type": "ContactPoint",
|
||||
"email": "kontak@o-k-i.net",
|
||||
"contactType": "customer service"
|
||||
},
|
||||
"sameAs": [
|
||||
"https://gade.o-k-i.net/",
|
||||
"https://bokantaj.o-k-i.net/",
|
||||
"https://mizik.o-k-i.net/",
|
||||
"https://kute.o-k-i.net/",
|
||||
"https://codeberg.org/OKI",
|
||||
"https://liberapay.com/OKI/donate"
|
||||
],
|
||||
"foundingDate": "2024",
|
||||
"nonprofitStatus": "NonprofitANBI"
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
{% include "partials/nav.njk" %}
|
||||
|
||||
Reference in New Issue
Block a user