-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
55 lines (44 loc) · 2.28 KB
/
index.html
File metadata and controls
55 lines (44 loc) · 2.28 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>Python Panama - Comunidad Panameña de Python</title>
<meta name="description" content="Comunidad Python Panama" />
<meta name="keywords" content="Python, Panamá, Comunidad, Programación, PyCon, Meetup" />
<meta name="author" content="pythonpanama.org" />
<!-- Open Graph Meta Tags (para Facebook, LinkedIn, WhatsApp, etc.) -->
<meta property="og:title" content="Python Panamá - Comunidad Panameña de Python" />
<meta property="og:description" content="¡Que todo Panamá y la región hablen Python!" />
<meta property="og:image" content="https://pythonpanama.org/logo.png" />
<meta property="og:url" content="https://pythonpanama.org/" />
<meta property="og:type" content="website" />
<!-- Twitter Card Meta Tags -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Python Panamá - Comunidad Panameña de Python" />
<meta name="twitter:description" content="¡Que todo Panamá y la región hablen Python!" />
<meta name="twitter:image" content="https://pythonpanama.org/logo.png" />
<!-- Favicon -->
<link rel="shortcut icon" href="./src/assets/img/icon.png" type="image/x-icon" />
<link rel="apple-touch-icon" href="./src/assets/img/apple-touch-icon.png" />
<!-- Mobile Metas -->
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1.0, shrink-to-fit=no" />
<!-- Web Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap" rel="stylesheet" type="text/css" />
<!-- Theme CSS -->
<link rel="stylesheet" href="/css/theme.css" />
<link rel="stylesheet" href="/css/theme-elements.css" />
<link rel="stylesheet" href="/css/theme-blog.css" />
<link rel="stylesheet" href="/css/theme-shop.css" />
<!-- Theme Custom CSS -->
<link rel="stylesheet" href="/css/HomePage.css" />
<link rel="stylesheet" href="/css/Menu&Footer.css" />
<link rel="stylesheet" href="/css/Contact&Sponsors.css" />
<link rel="stylesheet" href="/css/Blog&Conduct.css" />
<link rel="stylesheet" href="/css/BlogPage.css" />
</head>
<body>
<div id="root"></div>
<script type="module" src="./src/main.tsx"></script>
</body>
</html>