-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathsearch.html
More file actions
88 lines (70 loc) · 3.38 KB
/
search.html
File metadata and controls
88 lines (70 loc) · 3.38 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Link viewer</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/jszip/dist/jszip.min.js"></script>
<script src="https://unpkg.com/sql.js@1.6.0/dist/sql-wasm.js"></script>
<link href="styles/viewerzip.css?i=90" rel="stylesheet" crossorigin="anonymous">
<script src="scripts/config.js?i=142"></script>
<script src="scripts/library.js?i=142"></script>
<script src="scripts/database.js?i=142"></script>
<script src="scripts/webtoolkit.js?i=142"></script>
<script src="scripts/entries_library.js?i=142"></script>
<script src="scripts/events.js?i=142"></script>
<script src="scripts/ui.js?i=142"></script>
<script src="scripts/search.js?i=142"></script>
<script src="scripts/project.js?i=142"></script>
</head>
<body style="padding-bottom: 6em;">
<div id="projectNavbar">
</div>
<div class="container">
<div id="statusLine">
</div>
<div id="helpPlace" style="display: none;">
<p>
This is offline search. It might sound unbelievable, even absurd, but it is true. This search, once initialized from JSON data, is totally offline.
</p>
<p>
I always liked "awesome lists", or reddit megathreads. These are community-driven collections of resources—programs, tools, or knowledge—compiled manually or semi-automatically.
</p>
<p>
The idea behind the Offline Search Initiative is to create similar curated lists, but tailored for domains and channels. This approach could simplify access to focused content without relying on intensive, online search infrastructure. It does, surely has it's downsides.
</p>
<p>
Input supports any words, so you can enter "Google", or "Bing". If "LIKE" is part of the input, then it will be treated as a part of WHERE SQL clause.
</p>
<div id="version">
</div>
</div>
<span id="progressBarElement">
</span>
<span id="listData">
</span>
<div id="pagination">
</div>
</div>
<!--
Unfortunately, no one can be told what the Matrix is. You have to see it for yourself.
-->
<footer id="footer" class="text-center text-lg-start bg-body-tertiary text-muted fixed-bottom">
<div id="footerLine" class="text-center p-1" style="background-color: rgba(0, 0, 0, 0);">
</div>
<div class="text-center p-1" style="background-color: rgba(0, 0, 0, 0);">
<span style="white-space: nowrap;">
Links repository
<a href="https://github.com/rumca-js/Internet-Places-Database">Internet-Places-Database</a>.
</span>
<span style="white-space: nowrap;">
Captured by
<a href="https://github.com/rumca-js/Django-link-archive">Django-link-archive</a>.
</span>
</div>
</footer>
</body>
</html>