forked from manuelsaezcarmona/combuilder
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathindex.html
More file actions
64 lines (62 loc) · 3.99 KB
/
index.html
File metadata and controls
64 lines (62 loc) · 3.99 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="%BASE_URL%cb-logo.svg" />
<link rel="manifest" href="%BASE_URL%manifest.webmanifest" />
<link rel="apple-touch-icon" href="%BASE_URL%icons/apple-touch-icon.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Preconnect to CDNs to establish connections early -->
<link rel="preconnect" href="https://cdn.jsdelivr.net" crossorigin>
<link rel="preconnect" href="https://cdnjs.cloudflare.com" crossorigin>
<!-- CSS loaded as <link> (parallel, not blocking like @import inside CSS) -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@1.0.2/css/bulma.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css">
<!-- Preload main data file so the browser fetches it before React boots -->
<link rel="preload" href="%BASE_URL%data/communities.json" as="fetch" crossorigin>
<meta name="theme-color" content="#3273dc" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="default" />
<title>Comunidades Tech España — Meetups, Grupos y Conferencias</title>
<meta name="description" content="Descubre y filtra más de 500 comunidades tech de toda España: meetups, grupos de usuarios, conferencias y más. Busca por ciudad, tema o formato. Open source y open data." />
<!-- Open Graph -->
<meta property="og:type" content="website" />
<meta property="og:locale" content="es_ES" />
<meta property="og:site_name" content="Comunidades Tech" />
<meta property="og:url" content="https://combuilderses.github.io/communities-directory/" />
<meta property="og:title" content="Comunidades Tech España — Meetups, Grupos y Conferencias" />
<meta property="og:description" content="Descubre y filtra más de 500 comunidades tech de toda España: meetups, grupos de usuarios, conferencias y más. Busca por ciudad, tema o formato. Open source y open data." />
<meta property="og:image" content="https://combuilderses.github.io/communities-directory/images/directorio-de-comunidades-tecnicas-de-espa%C3%B1a-1920-630.webp" />
<meta property="og:image:type" content="image/webp" />
<meta property="og:image:width" content="1920" />
<meta property="og:image:height" content="630" />
<meta property="og:image:alt" content="Directorio de Comunidades Técnicas de España — +500 meetups, conferencias y más" />
<!-- Twitter / X Card -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@ComBuilders_ES" />
<meta name="twitter:title" content="Comunidades Tech España — Meetups, Grupos y Conferencias" />
<meta name="twitter:description" content="Descubre y filtra más de 500 comunidades tech de toda España: meetups, grupos de usuarios, conferencias y más. Busca por ciudad, tema o formato. Open source y open data." />
<meta name="twitter:image" content="https://combuilderses.github.io/communities-directory/images/directorio-de-comunidades-tecnicas-de-espa%C3%B1a-1920-630.webp" />
<meta name="twitter:image:alt" content="Directorio de Comunidades Técnicas de España — +500 meetups, conferencias y más" />
</head>
<body>
<!-- Path-restore: when GitHub Pages 404.html encodes a deep link into
?_spa=, this script restores it before React boots so the locale
path prefix (/es/, /en/) is visible to i18next on first paint. -->
<script>
(function () {
var spa = new URLSearchParams(window.location.search).get('_spa');
if (spa) {
var base = window.location.pathname.replace(/\/$/, '');
window.history.replaceState(
null,
'',
base + decodeURIComponent(spa)
);
}
})();
</script>
<div id="search_app"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>