-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
22 lines (22 loc) · 956 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html>
<head>
<title>MeetupTrackr</title>
<link rel="stylesheet" href="/bootstrap/dist/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="/style.css" />
<script src="/jquery/dist/jquery.min.js"></script>
<script src="/appbase-js/browser/appbase.js"></script>
<script src="/bootstrap/dist/js/bootstrap.min.js"></script>
<script type="text/javascript" src="/typeahead.js/dist/typeahead.bundle.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body class="container">
<div id="container"></div>
<script type="text/javascript" src="/helper.js"></script>
<script type="text/javascript" src="/request.js"></script>
<script type="text/javascript">
var REQUEST = new meetup_request(null);
</script>
<script src="/main.js"></script>
</body>
</html>