-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
53 lines (51 loc) · 1.57 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
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<html lang="en">
<head>
<meta charset="utf-8">
<title>dashboard</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://bootswatch.com/3/cyborg/bootstrap.min.css">
<!--<script defer src="https://use.fontawesome.com/releases/v5.5.0/js/all.js"></script> -->
<!-- <link rel="stylesheet" href="https://unpkg.com/leaflet@1.3.4/dist/leaflet.css" integrity="sha512-puBpdR0798OZvTTbP4A8Ix/l+A4dHDD0DGqYW6RQ+9jxkRFclaxxQb/SJAWZfWAkuyeQUytO7+7N4QKrDh+drA==" crossorigin=""/> -->
<link rel="stylesheet" href="src/assets/css/owfont-regular.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<meta name="apple-mobile-web-app-capable" content="yes">
<style>
.fas::before {
text-rendering: optimizeLegibility;
}
</style>
</head>
<body>
<div id="app">
<div class="container-fluid">
<!-- Time and weather -->
<div class="row">
<div class="col-xs-6">
<clock></clock>
</div>
<div class="col-xs-6">
<yr></yr>
</div>
</div>
<!-- // Time and weather -->
<!-- Calendar -->
<div class="row">
<div class="col-xs-12">
<calendar></calendar>
</div>
</div>
<!-- // Calendar -->
<!-- Bus -->
<div class="row">
<div class="col-xs-12">
<nextbus></nextbus>
</div>
</div>
<!-- // Bus -->
</div>
</div>
<script src="/dist/build.js"></script>
</body>
</html>