-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
76 lines (70 loc) · 3.44 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
<!DocType HTML>
<html><head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0,user-scalable=no">
<title>Truck Chain</title>
<link rel="stylesheet" href="node_modules/material-design-lite/material.min.css">
<link rel="stylesheet" href="source/style/index.css">
<link rel="stylesheet" href="node_modules/material-design-icons/iconfont/material-icons.css">
<link rel="stylesheet" href="source/style/font.css">
<script src="node_modules/babel-polyfill/dist/polyfill.min.js"></script>
<script src="node_modules/@webcomponents/webcomponentsjs/webcomponents-loader.js"></script>
<script src="node_modules/@webcomponents/webcomponentsjs/custom-elements-es5-adapter.js"></script>
<script src="node_modules/resize-observer-polyfill/dist/ResizeObserver.global.js"></script>
<script src="node_modules/whatwg-fetch/fetch.js"></script>
<script src="node_modules/web-cell/dist/web-cell.js"></script>
<script src="node_modules/cell-router/dist/source.js"></script>
<script src="node_modules/material-cell/dist/Icon.js"></script>
<script src="node_modules/material-cell/dist/Search.js"></script>
<script src="node_modules/material-cell/dist/Header.js"></script>
<script src="node_modules/material-cell/dist/Drawer.js"></script>
<script src="node_modules/material-cell/dist/Navigation.js"></script>
</head><body>
<!-- Router configuration -->
<cell-loader base="dist/">
<cell-page path="page-signin"></cell-page>
<cell-page path="page-truck"></cell-page>
<cell-page path="page-route"></cell-page>
<cell-page path="page-rank"></cell-page>
</cell-loader>
<cell-router>
<cell-route path="signIn" tag="page-signin"></cell-route>
<cell-route path="truck" tag="page-truck"></cell-route>
<cell-route path="route" tag="page-route"></cell-route>
<cell-route path="rank" tag="page-rank"></cell-route>
</cell-router>
<div class="demo-layout mdl-layout mdl-js-layout mdl-layout--fixed-drawer mdl-layout--fixed-header">
<cell-header class="demo-header mdl-color--grey-100 mdl-color-text--grey-600">
<div tabindex="0" class="mdl-layout__drawer-button" slot="left">
<cell-icon name="menu"></cell-icon>
</div>
<span>Truck-Chain</span>
</cell-header>
<cell-drawer class="demo-drawer mdl-color--blue-grey-900 mdl-color-text--blue-grey-50">
<header class="demo-drawer-header">
<img src="source/image/user.jpg" class="demo-avatar">
<div class="demo-avatar-dropdown">
<span>(Please sign in...)</span>
</div>
</header>
<cell-navigation class="demo-navigation mdl-color--blue-grey-800"
src="source/index.json"></cell-navigation>
<footer>
Created by
<a target="_blank" href="https://github.com/orgs/git-hacker/teams/tech-addicts">
Tech Addicts
</a>
</footer>
</cell-drawer>
<main>
<div id="blank">
<div>
<img src="source/image/delivery.png">
<h3>Welcome to <br>Truck-Chain!</h3>
</div>
</div>
</main>
</div>
<script src="node_modules/material-design-lite/material.min.js"></script>
<script src="dist/page.js"></script>
</body></html>