-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathindex.html
executable file
·45 lines (32 loc) · 1.29 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
<!doctype html>
<html lang="en" data-framework="marionettejs">
<head>
<meta charset="utf-8">
<title>Backbone.Marionette with RequireJS</title>
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/style.css">
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="header">
<span id="main-nav">
</span>
<h3 class="text-muted">Marionette boilerplate</h3>
</div>
<div id="notification"></div><!-- /#notification -->
<div id="main">
</div>
<div class="footer" id="footer">
</div>
<!-- To be used as modal and notifications-->
<div class="modal fade" id="dialog" tabindex="-1" role="dialog" aria-hidden="true">
</div><!-- /.modal -->
</div> <!-- /container -->
<script data-main="js/main" src="bower_components/requirejs/require.js"></script>
</body>
</html>