-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathindex.html
193 lines (189 loc) · 6.92 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
<!DOCTYPE html>
<html lang="en">
<head>
<title>twinkle</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.0/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.0/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.0/js/bootstrap.min.js"></script>
<link rel="stylesheet" type="text/css" href="style/style.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.7.2/Chart.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.7.2/Chart.min.js"></script>
</head>
<body style="background-color:#e9ecef;">
<!-- nav -->
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<img src="./images/logo.png" alt="Twinkle" class="img-fluid rounded" style="width:75px;height:50px;margin-top:2px;" />
<div style="margin-left:5px;">Twinkle</div>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav mr-auto">
<li class="nav-item active">
<a class="nav-link" href="#">Home <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">About Us </a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown"
aria-haspopup="true" aria-expanded="false">
Dropdown
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdown">
<a class="dropdown-item" href="#">Action</a>
<a class="dropdown-item" href="#">Another action</a>
<div class="dropdown-divider"></div>
<a class="dropdown-item" href="#">Something else here</a>
</div>
</li>
<li class="nav-item">
<a class="nav-link " href="./src/gallery/index.html">Gallery</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown"
aria-haspopup="true" aria-expanded="false">
Pages
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdown">
<a class="dropdown-item" href="./loginform.html">Login</a>
<div class="dropdown-divider"></div>
<a class="dropdown-item" href="./registerform.html">Register</a>
<a class="dropdown-item" href="./dashboard.html">Dashboard #1</a>
</div>
</li>
</ul>
<div>
<form class="form-inline my-2 my-lg-0">
<button class="btn btn-outline-success my-2 my-sm-0" type="submit">SignOut</button>
</form>
</div>
</div>
</nav>
<!-- cards -->
<section class="container-fluid" style="margin-top:10px;">
<div class="row">
<div class="col">
<div class="card ">
<div class="card-body">
<h5 class="card-title">History</h5>
<p class="card-text">Lorem ipsum, or lipsum as it is sometimes known, is dummy text.</p>
</div>
</div>
</div>
<div class="col">
<div class="card">
<div class="card-body">
<h5 class="card-title">Purpose</h5>
<p class="card-text">create a natural looking block of text (sentence, paragraph, page, etc.)
</p>
</div>
</div>
</div>
<div class="col">
<div class="card">
<div class="card-body">
<h5 class="card-title">Usage</h5>
<p class="card-text">Today it's seen all around the web; on templates, websites, and stock designs.</p>
</div>
</div>
</div>
<div class="col">
<div class="card">
<div class="card-body">
<h5 class="card-title">Special title </h5>
<p class="card-text">With supporting text below as a natural lead-in to additional content.</p>
</div>
</div>
</div>
</div>
</section>
<!-- charts -->
<section class="container-fluid">
<div class="row my-3">
<div class="col">
<h4>Chart</h4>
</div>
</div>
<div class="row py-2">
<div class="col-md-4 py-1">
<div class="card">
<div class="card-body">
<canvas id="chLine"></canvas>
</div>
</div>
</div>
<div class="col-md-4 py-1">
<div class="card">
<div class="card-body">
<canvas id="chDonut2"></canvas>
</div>
</div>
</div>
<div class="col-md-4">
<div class="card">
<div class="card-body">
<canvas id="chBar"></canvas>
</div>
</div>
</div>
</div>
</section>
<!-- table -->
<section class="container-fluid">
<div class="row">
<div class="col">
<div class="table-responsive">
<table class="table table-light table-bordered table-hover ">
<thead>
<tr>
<th scope="col">#</th>
<th scope="col">First</th>
<th scope="col">Last</th>
<th scope="col">Handle</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">1</th>
<td>Mark</td>
<td>Otto</td>
<td>@mdo</td>
</tr>
<tr>
<th scope="row">2</th>
<td>Jacob</td>
<td>Thornton</td>
<td>@fat</td>
</tr>
<tr>
<th scope="row">3</th>
<td colspan="2">Larry the Bird</td>
<td>@twitter</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</section>
<!-- footer -->
<footer class="container-fluid bg-light fixed-footer ">
<div class="row">
<div class="col-md-6">
<p class="font-weight-light align-bottom" style="margin: 0; padding: 10px;">Copyright © 2018 <a href="https://gangsterteam.github.io/twinkle/">Twinkle</a>.
Theme by <a href="https://github.com/GangsterTeam/">GangsterTeam</a> All rights reserved.</p>
</div>
<div class="col-md-6 text-right">
<p class="font-weight-light align-bottom" style="margin: 0; padding: 10px;"><a href="https://github.com/GangsterTeam/twinkle">Source
code</a></p>
</div>
</div>
</footer>
</body>
<script src="./js/index.js"></script>
</html>