-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
79 lines (76 loc) · 2.34 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
69
70
71
72
73
74
75
76
77
78
79
<!--
* example-angularjs
* https://github.com/3lXample/example-angularjs
*
* Copyright (c) 2017 3lXample (https://github.com/3lXample)
* Licensed under the MIT license
-->
<!doctype html>
<html lang="en" ng-app="3XApp" ng-strict-di>
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<base href="/example-angularjs/">
<title>3lXample - Example AngularJS Web</title>
<meta name="description" content="An example of web made with AngularJS">
<link rel="icon" type="image/x-icon" href="favicon.ico">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="_vendor/bootstrap.min.css">
<!-- App CSS -->
<link rel="stylesheet" href="_app/style.css">
<!-- AngularJS JS -->
<script src="_vendor/angular.min.js"></script>
<!-- App JS -->
<script src="_app/module.js"></script>
<script src="_app/config.js"></script>
<script src="_app/route.js"></script>
<script src="_app/component.js"></script>
<script src="_app/directive.js"></script>
<script src="_app/controller.js"></script>
<script src="_app/provider.js"></script>
<script src="_app/filter.js"></script>
</head>
<body>
<header>
<div class="row">
<div class="col col-auto">
<img src="_assets/3lXample_logo-160x44.png" width="160" height="44" alt="logo">
</div>
<div class="col">
<h1>Example AngularJS</h1>
</div>
</div>
</header>
<nav>
<ul class="nav nav-tabs">
<li class="nav-item">
<a class="nav-link active" href=".">
<img src="_assets/3lXample_icon-20x20.png" width="20" height="20" alt="home">
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="pagination">Pagination</a>
</li>
<li class="nav-item">
<a class="nav-link" href="addition">Addition</a>
</li>
<li class="nav-item">
<a class="nav-link" href="subtraction">Subtraction</a>
</li>
</ul>
</nav>
<main>
<section>
<h2>Example AngularJS Web</h2>
<p>An example of web made with AngularJS</p>
</section>
</main>
<footer>
<p>Copyright (c) 2017 3lXample (https://github.com/3lXample)</p>
<p>Designed and built by Anisetus Elly Efendi</p>
</footer>
<script src="_vendor/popper.min.js"></script>
<script src="_vendor/bootstrap.min.js"></script>
</body>
</html>