forked from venchenco/shopping-cart-demo
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
48 lines (45 loc) · 1.69 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
<html ng-app="shopping-cart-demo">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Shopping Cart - Using blockonomics API</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/bulma.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<nav class="navbar has-shadow" role="navigation">
<div class="navbar-brand">
<a href="#/" class="navbar-item"><h4 class="title is-4">Shopping Cart Demo</h4></a>
</div>
<div class="navbar-menu">
<div class="navbar-start">
<a href="#/" class="navbar-item">Products</a>
<a href="#/status" class="navbar-item">Order Status</a>
</div>
<div class="navbar-end">
<div class="field navbar-item">
<p class="control">
<a class="button is-link" href="https://github.com/blockonomics/shopping-cart-demo">
<span class="icon">
<i class="fa fa-github"></i>
</span>
<span>Complete Source Code</span>
</a>
</p>
</div>
</div>
</div>
</nav>
<div class="section" ng-view>
</div>
<script src="js/angular.js"></script>
<script src="js/angular-resource.js"></script>
<script src="js/angular-route.js"></script>
<script src="js/app.js"></script>
<script src="js/angular-qrcode.js"></script>
<script src="js/vendors.min.js"></script>
</body>
</html>