-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
32 lines (28 loc) · 1.62 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
<html>
<head>
<meta charset="UTF-8">
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.29.4/moment-with-locales.min.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/luxon/3.4.4/luxon.min.js"></script>
<!-- https://tabulator.info/docs/5.5/install#sources-cdn -->
<link href="https://unpkg.com/tabulator-tables@5.5.2/dist/css/tabulator.min.css" rel="stylesheet">
<link href="https://unpkg.com/tabulator-tables@5.5.2/dist/css/tabulator_midnight.min.css" rel="stylesheet" media="(prefers-color-scheme: dark)">
<script type="text/javascript" src="https://unpkg.com/tabulator-tables@5.5.2/dist/js/tabulator.min.js"></script>
<!-- Popup -->
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@11"></script>
<script type="text/javascript" src="banknote-tabulator.js"></script>
<link href="style.css" rel="stylesheet"">
</head>
<body>
<div class="menu-container">
<div class="category-menu" id="category-menu"></div>
<div class="menu-tools">
<button id="resetFiltersButton">Reset all filters</button>
<span>Index updated: <span id="last_index_refresh">...</span></span>
<a href="https://github.com/TheStalwart/banknote-tabulator" title="Source on GitHub">
https://github.com/TheStalwart/banknote-tabulator
</a>
</div>
</div>
<div id="example-table" style="width: 100%; height: 95%"></div>
</body>
</html>