-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
69 lines (60 loc) · 3.13 KB
/
Copy pathindex.html
File metadata and controls
69 lines (60 loc) · 3.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<!-- Favicons (servis depuis public/, chemins stables à la racine) -->
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96" />
<!-- favicon.svg retiré : 428 kB de PNG base64 déguisé en SVG (AUDIT.md P3) -->
<link rel="shortcut icon" href="/favicon.ico" />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
<link rel="manifest" href="/site.webmanifest" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="theme-color" content="#04906D" />
<!-- Primary Meta Tags -->
<title>Python Cameroon</title>
<meta name="title" content="Python Cameroon" />
<meta name="description" content="Welcome to the Python Cameroon Community - a vibrant and supportive space for individuals passionate about Python programming." />
<link rel="canonical" href="https://pythoncameroon.org/" />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://pythoncameroon.org/" />
<meta property="og:site_name" content="Python Cameroon" />
<meta property="og:title" content="Python Cameroon" />
<meta property="og:description" content="Welcome to the Python Cameroon Community - a vibrant and supportive space for individuals passionate about Python programming." />
<!-- URL absolue requise par les crawlers (FB/LinkedIn/X) -->
<meta property="og:image" content="https://pythoncameroon.org/og-image.png" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta property="og:image:alt" content="Python Cameroon community logo" />
<!-- Twitter -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:url" content="https://pythoncameroon.org/" />
<meta name="twitter:title" content="Python Cameroon" />
<meta name="twitter:description" content="Welcome to the Python Cameroon Community - a vibrant and supportive space for individuals passionate about Python programming." />
<meta name="twitter:image" content="https://pythoncameroon.org/og-image.png" />
<!-- Données structurées -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "Python Cameroon",
"url": "https://pythoncameroon.org/",
"logo": "https://pythoncameroon.org/web-app-manifest-512x512.png",
"email": "organizers@pythoncameroon.org",
"description": "A vibrant and supportive community for individuals passionate about Python programming in Cameroon.",
"sameAs": [
"https://github.com/pythoncameroon",
"https://x.com/pythoncameroon",
"https://linkedin.com/company/PythonCameroon",
"https://www.youtube.com/@PythonCameroon",
"https://discord.gg/TWVCKCe3Dt"
]
}
</script>
<!-- Fonts : auto-hébergées via @fontsource, importées dans src/main.tsx (AUDIT.md P6) -->
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>