-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsearch.html
More file actions
54 lines (51 loc) · 2.13 KB
/
Copy pathsearch.html
File metadata and controls
54 lines (51 loc) · 2.13 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Search | STiBaRC</title>
<link rel="manifest" href="/manifest.json" />
<meta name="viewport" content="initial-scale=1, maximum-scale=5, user-scalable=yes, width=device-width">
<link rel="icon" type="image/png" href="/img/icon.png">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@300;400&display=swap" rel="stylesheet">
<link rel="stylesheet" href="/css/themes/default.css" id="theme">
<link rel="stylesheet" href="/css/global.css">
<link rel="stylesheet" href="/css/search.css">
<script src="/js/API.js"></script>
<script src="/js/global.js"></script>
<script type="module" src="/components/LoginModal.js"></script>
<script type="module" src="/components/RegisterModal.js"></script>
<script type="module" src="/components/SwitchAccountModal.js"></script>
<script type="module" src="/components/Header.js"></script>
<script type="module" src="/components/Footer.js"></script>
<script type="module" src="/components/Icon.js"></script>
<script src="/components/UserBlock.js"></script>
<script src="/components/AttachmentBlock.js"></script>
<script src="/components/PostBlock.js"></script>
<script src="/components/ClipBlock.js"></script>
<script src="/js/search.js"></script>
</head>
<body>
<stibarc-header></stibarc-header>
<stibarc-login-modal></stibarc-login-modal>
<stibarc-register-modal></stibarc-register-modal>
<stibarc-switchaccount-modal></stibarc-switchaccount-modal>
<main>
<h2 id="query" class="hidden"></h2>
<p id="resultsCount" class="hidden"></p>
<span><span id="loader" class="flexcontainer loader hidden" style="margin: 1rem auto;"></span></span>
<span id="noResults" class="hidden">
<h3>No Results!</h3>
</span>
<span class="verticalspacer"></span>
<span id="users"></span>
<span id="clips" class="flexcontainer hidden"></span>
<span id="posts" class="posts"></span>
</main>
<stibarc-footer></stibarc-footer>
<span id="overlay" class="hidden">
<span id="overlaybg"></span>
</span>
</body>
</html>