-
Notifications
You must be signed in to change notification settings - Fork 14
/
index.html
executable file
·33 lines (33 loc) · 1.51 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<title>Free Code Camp Indy</title>
<!-- CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" href="css/style.css">
<!-- JS -->
<script src="https://code.jquery.com/jquery-2.2.4.min.js" integrity="sha256-BbhdlvQf/xTY9gja0Dq3HiwQF8LaCRTXxZKRutelT44=" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.17.2/lodash.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" charset="utf-8"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.17.0/moment.min.js"></script>
<script src="js/myjs.js" charset="utf-8"></script>
<script src="js/views/index-meetup.js" charset="utf-8"></script>
<!-- Fonts -->
</head>
<body>
<div class="wrapper">
<div class="include" data-include="header"></div>
<div id="content" >
<div class="include" data-include="index-banner"></div>
<div class="include" data-include="index-meetup"></div>
<div class="include" data-include="index-getInvolved"></div>
<div class="include" data-include="index-sponsors"></div>
<!-- *** -->
</div>
<footer class="include" data-include="footer"></footer>
<div class="include" data-include="google-analytics"></div>
</div>
</body>
</html>