-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (40 loc) · 1.99 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="description" content="A minimal startpage with links to common sites">
<meta name="keywords" content="Startpage, links, time, date, serach, bar, box, start">
<meta name="author" content="Totalfreak">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/png" href="favicon.png" sizes="32x32"/>
<link rel="stylesheet" id="theme" href="styles/themes/gruvbox-dark.css">
<link rel="stylesheet" href="styles/main.css">
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
<script src="scripts/custom.js"></script>
<script src="scripts/time.js"></script>
<script src="scripts/keys.js"></script>
<script src="scripts/links.js"></script>
<script src="scripts/theme.js"></script>
<script src="scripts/locale.js"></script>
<script src="scripts/search.js"></script>
<title id="pageTitle"></title>
</head>
<body>
<!-- <button id="themeButton" onclick="toggleTheme()" style="display:none;" tabIndex="1">😴</button> -->
<div class="centerContainer"><div class="centerContent">
<div class="clockTime"><span id="cTime"></span></div>
<div class="clockDate"><span id="cDate"></span></div>
<div class="clockGreet"><span id="cGreet"></span><span id="cGreetName"></span></div>
<p id="noscript"><noscript>Your browser does not support <strong>Javascript</strong> or has it disabled. This page requires <strong>JS</strong> for
most of its functions.</noscript></p>
<hr class="separator" id="greetLine">
<div class="searchBox" id="searchBox">
<form action="https://duckduckgo.com/" method="get">
<input class="inputBox" id="searchInput" type="text" name="q" placeholder="DuckDuckGo..." tabIndex="2" autofocus/>
</form>
</div>
<div id="shortLinks"></div>
</div></div>
</body>
</html>