generated from DeclanChidlow/TemplateRepo
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
69 lines (64 loc) · 3.24 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
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
<!doctype html>
<html lang="en">
<head>
<script src="script.js"></script>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta property="og:site_name" content="Vale's Search Wrapper" />
<meta name="author" content="Declan Chidlow" />
<meta property="og:locale" content="en_AU" />
<meta property="og:url" content="https://search.vale.rocks" />
<title>Vale's Search Wrapper</title>
<link rel="stylesheet" href="/styles.css" />
<link rel="search" type="application/opensearchdescription+xml" title="Vale's Search Wrapper" href="https://search.vale.rocks/opensearch.xml" />
</head>
<body>
<main>
<h1>Search</h1>
<noscript>
<p>This app requires JavaScript to function, but it isn't enabled in your browser.</p>
</noscript>
<div id="script-enabled">
<form id="search-form">
<input type="text" id="search-input" placeholder="Search..." />
<button type="submit" id="search-button" class="icons">search</button>
</form>
<div class="default-engine">
<label for="engine-select">Default Search Engine:</label>
<select id="engine-select">
<option value="https://www.google.com/search?q=">Google</option>
<option value="https://www.bing.com/search?q=">Bing</option>
<option value="https://start.duckduckgo.com/?q=">DuckDuckGo</option>
<option value="https://www.startpage.com/do/search?query=">StartPage</option>
<option value="https://www.mojeek.com/search?q=">Mojeek</option>
<option value="https://search.brave.com/search?q=">Brave</option>
<option value="https://www.ecosia.org/search?q=">Ecosia</option>
<option value="https://you.com/search?q=">You</option>
<option value="https://yep.com/web?q=">Yep</option>
<option value="https://yandex.com/search/?text=">Yandex</option>
<option value="https://www.perplexity.ai/search?q=">Perplexity</option>
<option value="https://swisscows.com/web?query=">Swisscows</option>
<option value="https://kagi.com/search?q=">Kagi</option>
<option value="https://chatgpt.com/?hints=search&q=">ChatGPT Search</option>
<option value="https://www.ask.com/web?q=">Ask</option>
<option value="https://www.qwant.com/?q=">Qwant</option>
<option value="https://exa.ai/search?q=">Exa</option>
<option value="https://search.marginalia.nu/search?query=">Marginalia</option>
</select>
</div>
<button class="shortcode-open" popovertarget="shortcode-popover">Shortcodes</button>
<div id="shortcode-popover" popover>
<h2>Shortcodes</h2>
<p>Bang Patterns - You can add a shortcode prefixed with '!' to the start or end of your query to quickly switch to a specific search engine or website.</p>
<br />
<p>Snap Patterns - You can add a shortcode prefixed with '@' to the start or end of your query to do a search in your default engine that is filtered to a specific site.</p>
<br />
<p>The available shortcodes are:</p>
<ul id="shortcode-list"></ul>
<button class="shortcode-close" popovertarget="shortcode-popover">Close</button>
</div>
</div>
</main>
<footer><a href="https://github.com/DeclanChidlow/search">Source Code</a> | Built by <a href="https://vale.rocks">Vale</a></footer>
</body>
</html>