-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·84 lines (78 loc) · 4.63 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<title>Rails Girls 2016 - Porto Alegre</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Open+Sans:400,800">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u"
crossorigin="anonymous">
<link rel="stylesheet" href="css/timeline.css">
<link rel="stylesheet" href="css/app.css">
<link href="img/favicon.png" rel="shortcut icon" />
<link href="img/favicon.png" rel="icon" />
<link href="img/apple-touch-icon.png" rel="apple-touch-icon" />
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="row text-center rails-logo">
<a href="http://railsgirls.com/portoalegre">
<img src="img/railsgirls-logo.png" alt="Rails Girls">
</a>
</div>
<div class="row text-center menu">
<a class="col-xs-6 selectable-menu active-menu" href="#tabAgenda" data-toggle="tab"><span>AGENDA</span></a>
<a class="col-xs-6 selectable-menu " href="#tabFotos" data-toggle="tab"><span>FOTOS</span></a>
<a class="col-xs-6 selectable-menu " href="#tabMapa" data-toggle="tab"><span>MAPA</span></a>
<a class="col-xs-6 selectable-menu " href="#tabInformacoesLinks" data-toggle="tab"><span>EXTRAS</span></a>
</div>
<div class="row content ">
<div class="tab-content">
<div class="tab-pane fade in active" id="tabAgenda"></div>
<div class="tab-pane fade in" id="tabDesafios"></div>
<div class="tab-pane fade in" id="tabAtividadesEspeciais"></div>
<div class="tab-pane fade in text-center" id="tabFotos"></div>
<div class="tab-pane fade in text-center submenu-mapa" id="tabMapa">
<a class="col-xs-4 col-sm-4 selectable-menu" href="#" id="ondeEstou"><span>Onde estou?</span></a>
<a class="col-xs-4 col-sm-4 selectable-menu" href="#" id="tecnopuc"><span>TecnoPuc</span></a>
<a class="col-xs-4 col-sm-4 selectable-menu" href="#" id="global"><span>Global</span></a>
<div id="map"></div>
</div>
<div class="tab-pane fade in" id="tabInformacoesLinks"></div>
</div>
</div>
<div class="text-center rodape">
Feito com <i class="glyphicon glyphicon-heart" aria-hidden="true"></i> por
<a href="https://github.com/centeno" target="_blank">Centeno</a>,
<a href="https://github.com/dayanyespindola" target="_blank">Dayany</a>,
<a href="https://github.com/albogabriel" target="_blank">Albo</a>,
<a href="https://github.com/gustavomazevedo" target="_blank">Guto</a>,
<a href="https://github.com/henriquelbsouza" target="_blank">Henrique</a>,
<a href="https://github.com/dieselpardal" target="_blank">Ivan</a>,
<a href="https://github.com/lucaslago" target="_blank">Lucas Lago</a>,
<a href="https://github.com/sarahcaixeta" target="_blank">Sarah</a> e
<a href="https://github.com/tutabeier" target="_blank">Lucas Beier</a>.
</div>
</div>
<div id="modal" class="modal fade text-center">
<img src="" class="img-rounded img-resposive">
<div class="col-xs-12">
<a href="" target="_blank"></a> <span></span></div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa"
crossorigin="anonymous"></script>
<script src="js/app.js"></script>
<script src="js/map.js"></script>
<script async defer src="https://maps.googleapis.com/maps/api/js?key=AIzaSyAwcfNL0o2h3wSVnAlMkM6leZj3W2ell-g">
</script>
</body>
</html>