-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
51 lines (46 loc) · 2.22 KB
/
index.html
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
<!DOCTYPE html>
<html lang="es">
<head>
<title>sosvecinos.org</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link href="https://fonts.googleapis.com/css?family=Amatic+SC:400,700|Work+Sans:300,400,700" rel="stylesheet">
<link rel="stylesheet" href="https://code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/style.css">
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
</head>
<body>
<header>
<a class="github-ribbon" target="_blank" href="https://github.com/pepellou/ayuda-alimentos-coronavirus"><img width="149" height="149" src="https://github.blog/wp-content/uploads/2008/12/forkme_right_red_aa0000.png?resize=149%2C149" class="attachment-full size-full" alt="Fork me on GitHub" data-recalc-dims="1"></a>
</header>
<h1>sosvecinos.org</h1>
<p>
Recopilamos mensajes de ayuda y socorro en un mapa para que
puedas encontrar gente cercana que necesita tu ayuda o te puede ofrecer la suya.
</p>
<p>
O también puedes <a href="map.html">ver el mapa</a>.
</p>
<p>
Mira <a target="_blank" href="iniciativas.html">aquí</a> de dónde sacamos la información.
</p>
<label for="filterTags">Busca tu ciudad o barrio:</label>
<input type="text" class="form-control" id="filterTags" placeholder="Ciudad/barrio">
<table class="table" id="tweetsTable">
<thead>
<tr>
<th scope="col">Dónde</th>
<th scope="col">Mensaje</th>
</tr>
</thead>
<tbody id="tweets">
</tbody>
</table>
<script src="https://www.gstatic.com/firebasejs/7.11.0/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/7.11.0/firebase-database.js"></script>
<script src="src/config.js"></script>
<script src="src/main.js"></script>
</body>
</html>