textes revues et traduction

This commit is contained in:
ifaryd
2026-05-20 15:04:03 +00:00
parent 4a5cea4a7f
commit c4e45a888c
77 changed files with 6370 additions and 638 deletions

View File

@@ -1,6 +1,7 @@
{% load static %}
{% load static i18n %}
<!DOCTYPE html>
<html lang="fr">
{% get_current_language as CURRENT_LANG %}
<html lang="{{ CURRENT_LANG }}">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
@@ -19,14 +20,16 @@
<meta property="og:title" content="{% block og_title %}{% block title_plain %}Jool International — AgriTech Intelligence pour l'Afrique{% endblock %}{% endblock %}">
<meta property="og:description" content="{% block og_description %}Jool International développe des solutions AgriTech pour l'agriculture africaine : analyse satellitaire IA, cartographie drone et digitalisation des producteurs.{% endblock %}">
<meta property="og:url" content="https://jool-international.com{{ request.path }}">
<meta property="og:image" content="{% block og_image %}{% static 'img/og-cover.jpg' %}{% endblock %}">
<meta property="og:image" content="{% block og_image %}https://jool-international.com{% static 'img/logo.png' %}{% endblock %}">
<meta property="og:image:width" content="{% block og_image_w %}512{% endblock %}">
<meta property="og:image:height" content="{% block og_image_h %}512{% endblock %}">
<meta property="og:locale" content="fr_FR">
<!-- ── Twitter / X card ── -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="{% block twitter_title %}Jool International — AgriTech Intelligence pour l'Afrique{% endblock %}">
<meta name="twitter:description" content="{% block twitter_description %}Solutions AgriTech pour l'agriculture africaine : satellite, drone, digitalisation.{% endblock %}">
<meta name="twitter:image" content="{% block twitter_image %}{% static 'img/og-cover.jpg' %}{% endblock %}">
<meta name="twitter:image" content="{% block twitter_image %}https://jool-international.com{% static 'img/logo.png' %}{% endblock %}">
<!-- ── Schema.org JSON-LD ── -->
{% block schema_org %}
@@ -62,11 +65,18 @@
<link rel="icon" type="image/png" sizes="16x16" href="{% static 'img/favicon-16x16.png' %}">
<link rel="apple-touch-icon" sizes="180x180" href="{% static 'img/apple-touch-icon.png' %}">
<!-- ── Hreflang ── -->
<link rel="alternate" hreflang="fr" href="https://jool-international.com{{ request.path }}">
<link rel="alternate" hreflang="en" href="https://jool-international.com{% language 'en' %}{{ request.path }}{% endlanguage %}">
<link rel="alternate" hreflang="x-default" href="https://jool-international.com{{ request.path }}">
<!-- ── Préchargement polices critiques ── -->
<link rel="preload" as="font" type="font/woff2" crossorigin href="{% static 'fonts/7cHqv4kjgoGqM7E3j-ws51ostz0rdg.woff2' %}">
<link rel="preload" as="font" type="font/woff2" crossorigin href="{% static 'fonts/7cHqv4kjgoGqM7E3t-4s51ostz0rdg.woff2' %}">
<link rel="preload" as="font" type="font/woff2" crossorigin href="{% static 'fonts/LDItaoyNOAY6Uewc665JcIzCKsKc_M9flwmPq_HTTw.woff2' %}">
<!-- ── Fonts & styles ── -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,700;1,800&family=Roboto:wght@300;400;500;700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons+Round" rel="stylesheet">
<link rel="stylesheet" href="{% static 'fonts/fonts.css' %}">
<link rel="stylesheet" href="{% static 'css/home.css' %}">
{% block extra_css %}{% endblock %}
</head>
@@ -78,9 +88,9 @@
{% include "core/partials/_footer.html" %}
<script src="{% static 'js/faq_toggle.js' %}"></script>
<script src="{% static 'js/scroll_reveal.js' %}"></script>
<script src="{% static 'js/hamburger.js' %}"></script>
<script defer src="{% static 'js/faq_toggle.js' %}"></script>
<script defer src="{% static 'js/scroll_reveal.js' %}"></script>
<script defer src="{% static 'js/hamburger.js' %}"></script>
{% block extra_js %}{% endblock %}
</body>
</html>