-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
62 lines (59 loc) · 1.87 KB
/
Copy pathindex.html
File metadata and controls
62 lines (59 loc) · 1.87 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta
name="description"
content="A lightweight, open-source search interface for browsing Wikipedia over IPFS (InterPlanetary File System)."
/>
<link rel="icon" href="./static/assets/favicon.ico" sizes="32x32" />
<title>IPFS Wikipedia Search</title>
<style>
@import url("./static/styles.css");
</style>
</head>
<body>
<div class="search-container">
<img
src="./static/assets/wikipedia-on-ipfs.png"
alt="Wikipedia on IPFS (credit: https://github.com/ipfs/distributed-wikipedia-mirror)"
/>
<form id="searchForm">
<input
type="text"
id="searchInput"
placeholder="Search Wikipedia on IPFS..."
autocomplete="off"
required
/>
<button type="submit">Search</button>
</form>
<ul id="suggestionsList" class="suggestions"></ul>
<div id="errorMessage"></div>
</div>
<div class="info-container">
<a href="https://github.com/p2plabsxyz/wiki.p2plabs.xyz">Source Code</a> |
Made with 💙 by <a href="https://p2plabs.xyz">p2plabs.xyz</a><br />
<a href="ipns://wiki.p2plabs.xyz">ipns://</a>
<a href="hyper://wiki.p2plabs.xyz">hyper://</a>
</div>
<div class="footer">
<div>Powered by</div>
<a href="//distributed.press" target="_blank">
<img
alt="Distributed Press"
src="//distributed.press/img/logos/logo-distributedpress-grey.png"
/>
</a>
<p>
<a href="//reader.distributed.press" target="_blank"
>Follow on ActivityPub</a
>
|
<a href="//docs.distributed.press" target="_blank">Learn More</a>
</p>
</div>
<script src="./script.js"></script>
</body>
</html>