-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
88 lines (77 loc) · 3.85 KB
/
index.html
File metadata and controls
88 lines (77 loc) · 3.85 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Lleida Hack - Pàgina principal de la asociación Lleida Hack</title>
<meta name="Description"
content="LleidaHack es una asociación creada por alumnos de la EPS de Lleida para fomentar la pasión por la tecnología.">
<meta name="Keywords" content="computer-science students hackathon ">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="twitter:url" content="https://twitter.com/LleidaHack/">
<meta property="instagram:url" content="https://www.instagram.com/LleidaHack/">
<meta property="og:title" content="Lleida Hack - Pàgina principal de la asociación Lleida Hack" />
<meta property="og:type" content="organization" />
<meta property="og:url" content="https://lleidahack.github.io/" />
<meta property="og:image" content="https://lleidahack.github.io/img/logo.png" />
<meta property="og:description" content="LleidaHack es una asociación creada por alumnos de la EPS de Lleida para fomentar la pasión por la tecnología." />
<link rel="icon" href="/img/logoHack.png">
<!-- Styles -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.0/css/all.css">
<link href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.3.1/css/bootstrap.min.css" rel="stylesheet">
<link href="https://cdnjs.cloudflare.com/ajax/libs/mdbootstrap/4.7.5/css/mdb.min.css" rel="stylesheet">
<!-- Custom styles -->
<link rel="stylesheet" type="text/css" media="screen" href="/css/main.css">
<link rel="stylesheet" type="text/css" media="screen" href="/css/members.css">
<link rel="stylesheet" type="text/css" media="screen" href="/css/events.css">
<link rel="stylesheet" type="text/css" media="screen" href="/css/about-us.css">
<link rel="stylesheet" type="text/css" media="screen" href="/css/footer.css">
<!-- Firebase -->
<script src="https://www.gstatic.com/firebasejs/5.10.1/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/5.10.1/firebase-database.js"></script>
<script src="https://www.gstatic.com/firebasejs/5.10.1/firebase-auth.js"></script>
<script src="https://www.gstatic.com/firebasejs/5.10.1/firebase-firestore.js"></script>
</head>
<body>
<div id="navbar"></div>
<div class="wrapper">
<div id="banner"></div>
<div id="about-us"></div>
<div id="events"></div>
<div class="members" id="members"></div>
</div>
<div id="contact-us"></div>
<!-- Scripts -->
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.4/umd/popper.min.js">
</script>
<script type="text/javascript"
src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.3.1/js/bootstrap.min.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/mdbootstrap/4.7.5/js/mdb.min.js"></script>
<!-- Custom Scripts -->
<script type="text/javascript" src="js/firebaseInit.js"></script>
<script type="text/javascript" src="/js/members.js"></script>
<script type="text/javascript" src="/js/events.js"></script>
<script type="text/javascript" src="/js/banner.js"></script>
<script type="text/javascript" src="/js/main.js"></script>
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "Organization",
"name": "LleidaHack",
"url": "https://lleidahack.github.io/",
"sameAs": [
"https://twitter.com/LleidaHack",
"https://www.instagram.com/LleidaHack"
],
"address": {
"@type": "PostalAddress",
"streetAddress": "Carrer de Jaume II, 69",
"addressRegion": "Lleida",
"postalCode": "25001",
"addressCountry": "ES"
}
}
</script>
</body>
</html>