-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
39 lines (39 loc) · 1.51 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" href="media/icon.png" type="image/png" />
<title>Motor Database</title>
<link rel="stylesheet" href="css/styles.css" />
<link rel="stylesheet" type="text/css" href="//cdn.datatables.net/1.13.7/css/jquery.dataTables.min.css" />
<script src="https://code.jquery.com/jquery-3.6.4.min.js"></script>
<script type="text/javascript" src="//cdn.datatables.net/1.13.7/js/jquery.dataTables.min.js"></script>
</head>
<body>
<div class="header">
<a href="https://github.com/marc-frank/motor-database" class="button" target="_blank">Contribute on GitHub</a>
<h1>Motor Database</h1>
</div>
<table id="myTable" class="display">
<thead>
<tr>
<!-- Dynamic header will be generated here -->
</tr>
<tr class="search-boxes">
<!-- Search inputs will be generated here -->
</tr>
</thead>
<tbody>
<!-- Data will be loaded here -->
</tbody>
<tfoot>
<tr>
<!-- Dynamic footer will be generated here -->
</tr>
</tfoot>
</table>
<script src="js/dataTableSetup.js"></script>
<script src="js/main.js"></script>
</body>
</html>