-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (29 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<style>
[ng-cloak] {
display: none;
}
</style>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/underscore.js/1.6.0/underscore-min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/underscore.string/2.3.3/underscore.string.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/angular.js/1.2.15/angular.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/angular-ui-router/0.2.10/angular-ui-router.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.1.1/js/bootstrap.min.js"></script>
<script src="js/app.js"></script>
<title>Bo's Thinkful Homework Area</title>
<link rel="stylesheet" href="lib/bootswatch/superhero/bootstrap.min.css">
<link rel="stylesheet/less" href="css/app.less">
</head>
<body ng-cloak>
<header ng-include="'partials/shared/masthead.html'" class="masthead navbar navbar-inverse"></header>
<div class="container">
<div ui-view="sidebar" class="sidebar col-sm-3"></div>
<div ui-view="main" class="main col-sm-9"></div>
</div>
<footer ng-include="'partials/shared/footer.html'" class="footer navbar navbar-default"></footer>
</body>
</html>