-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
47 lines (43 loc) · 2.42 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tekstowo.pl Alternative Frontend</title>
<!-- <style ="./styles/mainPack.css"></style> -->
<meta name="darkreader-lock">
<!-- we already have dark mode -->
<link rel="stylesheet" type="text/css" href="./styles/mainPack.css">
<!-- <link rel="icon" href="https://www.tekstowo.pl/static/v2/images/favicons/icon-192.png"> -->
<!-- we should not since there is no permission from Tekstowo.pl to use their icon -->
</head>
<body>
<!-- <script src="./TekstowoAPI.js"></script> -->
<script type="application/javascript"
src="https://github.com/Davilarek/Tekstowo-Unofficial-API/releases/latest/download/TekstowoAPI-browser.js"></script>
<!-- <h1 onclick="location.search.length > 0 ? location.search=`` : location.pathname = ''" style="cursor: pointer;">Tekstowo.pl Alternative Frontend</h1> -->
<h1 onclick="location.href = location.pathname.substring(0, location.pathname.lastIndexOf(`/`)) + '/'"
style="cursor: pointer;">Tekstowo.pl Alternative Frontend</h1>
<!-- <h4 style="text-align: center;"><a href="#" onclick="flipBodyColors()">Flip colors</a></h4> -->
<!-- frontpage:
"Wasza lista przebojów": https://www.tekstowo.pl/rankingi,6-miesiecy.html first 10 elements
"Popularne teksty piosenek": https://www.tekstowo.pl/rankingi,miesiac,popularne.html first 10 elements
but probably will use caching, to avoid spamming
-->
<!-- <h4 style="text-align: center;"><span style="color: unset; text-decoration: underline; cursor: pointer;" href="#"
onclick="openOfficial()">Open official</span></h4> -->
<h4 style="text-align: center;"><a id="openOfficialHyperlink"
style="color: unset; text-decoration: underline; cursor: pointer;" href="#">Open official</a></h4>
<h4 style="text-align: center;"><a style="color: unset; text-decoration: underline; cursor: pointer;"
href="./settings.html">Open settings</a></h4>
<div class="search-bar">
<input id="querySearch" type="text" placeholder="Search">
<!-- <input id="artistSearch" type="text" placeholder="Artist">
<input id="songSearch" type="text" placeholder="Song Name"> -->
<button id="searchButton" type="button">Search</button>
</div>
<span id="injectionPoint" style="display: none;"></span>
<script src="./settings-manager.js"></script>
<script src="./main.js"></script>
</body>
</html>