blob: 8978d08e977c16f049482c4581d443ca65d5af3d (
plain) (
blame)
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
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="../stylesheets/styles.css" rel="stylesheet" />
<title>LibRedirect Options: Twitter</title>
</head>
<body class="option">
<section class="links">
<a href="general.html">General</a>
<a href="youtube.html">Youtube</a>
<a href="twitter.html">Twitter</a>
<a href="instagram.html">Instagram</a>
<a href="reddit.html">Reddit</a>
<a href="search.html">Search</a>
<a href="translate.html">Translate</a>
<a href="maps.html">Maps</a>
<a href="wikipedia.html" class="selected">Wikipedia</a>
<a href="medium.html">Medium</a>
</section>
<section class="option-block">
<div class="some-block option-block">
<h1>Wikipedia (Wikiless)</h1>
<input id="disable-wikipedia" type="checkbox" checked />
</div>
<div class="some-block option-block">
<h4>Instance</h4>
<div class="autocomplete">
<input id="wikipedia-instance" type="url" placeholder="https://wikiless.org" />
</div>
</div>
<section class="settings-block">
<h4>Instance List</h4>
<div class="random-pool">
<textarea id="wikiless-random-pool" type="text"></textarea>
<ul id="wikiless-random-pool-list"></ul>
</div>
</section>
</section>
<script type="module" src="./init.js"></script>
<script type="module" src="./wikipedia.js"></script>
<script src="../../assets/javascripts/localise.js"></script>
</body>
</html>
|