-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
68 lines (53 loc) · 2.05 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
<!DOCTYPE html>
<html xmlns:ng="http://angularjs.org" lang="en">
<head>
<title>iroffer-dinoexJS</title>
<!-- We can use this, or compile our own version later if we want to change stuff -->
<link href="//netdna.bootstrapcdn.com/twitter-bootstrap/2.2.1/css/bootstrap.no-responsive.no-icons.min.css"
rel="stylesheet">
<!-- Way more icons, way less loadtime -->
<link href="//netdna.bootstrapcdn.com/font-awesome/2.0/css/font-awesome.css" rel="stylesheet">
<!-- Most awesome font ever, if you don't like it suggest something -->
<link href="http://fonts.googleapis.com/css?family=Ubuntu:300,400,500" rel="stylesheet" type="text/css">
<!-- app.css -->
<link href="css/app.css" rel="stylesheet">
<!-- CDN JavaScripts -->
<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.0.2/angular.js"></script>
<!-- use minified angular.min.js after testing -->
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script src="//netdna.bootstrapcdn.com/twitter-bootstrap/2.2.1/js/bootstrap.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/css3finalize/3.1/jquery.css3finalize.min.js"></script>
<!-- App / Module / Controllers -->
<script src="js/app.js"></script>
<!-- ... add more -->
</head>
<body ng-app="irofferDinoexJs">
<header>
<div class="container-fluid">
<div class="page-header">
<h1>iroffer-dinoexJS</h1>
</div>
</div>
</header>
<section id="master">
<div class="container-fluid">
<div class="row-fluid">
<div class="span2"><!-- menu? --></div>
<div class="span10">
<ng-view>
<!-- nothing go in here, see: app.js -->
</ng-view>
</div>
</div>
</div>
</section>
<footer>
<div class="container-fluid">
<ul class="nav nav-pills">
<li><a href="https://github.com/nanashiRei/iroffer-dinoexJS">Source</a></li>
<li>Enjoy!</li>
</ul>
</div>
</footer>
</body>
</html>