-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
64 lines (55 loc) · 2.29 KB
/
Copy pathindex.html
File metadata and controls
64 lines (55 loc) · 2.29 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SIH Links</title>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@picocss/pico@2/css/pico.red.min.css">
<script async src="https://scripts.simpleanalyticscdn.com/latest.js"></script>
<script> window.goatcounter = {path: function(p) { return location.host + p }} </script>
<script data-goatcounter="https://sih.goatcounter.com/count" async src="//gc.zgo.at/count.js"></script>
<script src="links.js"></script>
</head>
<body>
<main class="container" id="main-container">
<header>
<hgroup class="container" style="display: flex; justify-content: space-between; align-items: baseline; flex-wrap: wrap; gap: 0.5rem;">
<h2 style="margin: 0;">SIH 🔗 Quick Links</h2>
<a href="https://github.com/Sydney-Informatics-Hub/links/edit/main/links.js" target="_blank" style="white-space: nowrap;">✏️ Edit links</a>
</hgroup>
<!-- Search Section -->
<input
type="search"
id="search-input"
placeholder="Search links... (shortcut, description, or URL)"
autocomplete="off"
>
<span id="search-results-count"></span>
</div>
</header>
<div id="table-scroll-container">
<table id="links-container">
<thead>
<tr>
<th>Shortlink</th>
<th>Description</th>
<th>Copy</th>
<th>QR</th>
</tr>
</thead>
<tbody>
<!-- Links will be populated here -->
</tbody>
</table>
</div>
<div id="no-results" class="no-results" style="display: none;">
<p>🔍 No links found matching your search.</p>
<p>Try searching for shortcuts, descriptions, or destination URLs.</p>
</div>
</main>
<script src="minisearch.js"></script>
<script src="qrcodegen.js"></script>
<script src="script.js"></script>
</body>
</html>