This repository has been archived by the owner on Oct 31, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
/
index.html
98 lines (72 loc) · 3.04 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<!doctype html>
<html lang="en">
<head>
<!-- Meta Stuff -->
<meta charset="UTF-8">
<!-- Page Title-->
<title>Events | Mozilla India Vibe</title>
<!--Favicon-->
<link rel="shortcut icon" href="img/favicon.ico">
<!--Library / Dependency Scripts-->
<script src="js/jquery.js"></script>
<script src="js/bootstrap.min.js"></script>
<!--Tabzilla-->
<script src="http://mozorg.cdn.mozilla.net/tabzilla/tabzilla.js"></script>
<!--Site Specific Scripts-->
<script src="js/fetchData.js"></script>
<!--Library / Dependency Stylesheets-->
<link rel="stylesheet" href="css/bootstrap.css">
<!--Site Specific Stylesheets-->
<link rel="stylesheet" href="css/events.css">
<link rel="stylesheet" href="css/global.css">
<link rel="stylesheet" href="css/site.css">
</head>
<!--Navigation Header-->
<header id="masthead">
<!--Tabzilla-->
<a aria-label="Mozilla links" href="http://www.mozilla.org/" id="tabzilla">Mozilla</a>
<!--Mozilla India Navigation Links-->
<nav id="nav-main" role="navigation">
<span class="toggle" role="button" aria-controls="nav-main-menu" tabindex="0">Menu</span>
<ul id="nav-main-menu">
<li class="first"><a href="http://www.mozilla.org/about/">About</a></li>
<li><a href="http://www.mozilla.org/mission/">Mission</a></li>
<li><a href="http://blog.mozillaindia.org">Blog</a></li>
<li><a href="http://hive.mozillaindia.org">Hive</a></li>
<li class="last"><a href="http://devs.mozillaindia.org/leaderboard">Leaderboard</a></li>
</ul>
</nav>
</header>
<body>
<!--Content Area: Heading Title-->
<div class="container">
<div id="content">
<ul id="mozTab" class="nav nav-tabs" data-tabs="tabs">
<li class="active"><a href="#evangl" data-toggle="tab" style="font-size: 1.5em;">Evangelists</a></li>
<li><a href="#events" data-toggle="tab" style="font-size: 1.5em;">Events</a></li>
</ul>
<div id="my-tab-content" class="tab-content">
<div class="tab-pane active" id="evangl">
<center>
<p>The list of the evangelists is going to be deployed soon.</p>
</center>
</div>
<div class="tab-pane" id="events">
<!--Search Box-->
<input id="searchMe" type="text" placeholder="Type City">
<!--Events Container-->
<div id="centfix"></div>
<!--No-Script Text for ancient browsers-->
<noscript>
JavaScript has to be enabled on your browser to get this working.
</noscript>
</div>
</div>
</div>
</div>
</body>
<footer>
<!--Tabzilla stylesheet-->
<link href="http://mozorg.cdn.mozilla.net/media/css/tabzilla-min.css" rel="stylesheet" />
</footer>
</html>