This repository has been archived by the owner on Jan 17, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
67 lines (51 loc) · 1.89 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
<!doctype html>
<html lang="en">
<!-- Head Page -->
<head>
<!-- Basics -->
<meta charset="utf-8">
<!-- Parameters -->
<title>Home For Iris</title>
<meta name="description" content="A simple, but yet, powerful homepage.">
<!---- Styles ---->
<!-- Colours for the UI -->
<link rel="stylesheet" href="./stylesheets/colours.css">
<!-- Home -->
<link rel="stylesheet" href="./stylesheets/background.css">
<!-- Fonts -->
<link rel="stylesheet" href="./stylesheets/fonts.css">
<!-- Grid/Flex parts of the UI -->
<link rel="stylesheet" href="./stylesheets/gridflex.css">
<!-- UI itself -->
<link rel="stylesheet" href="./stylesheets/ui.css">
<!---- Scripts ---->
<!-- Tools to minimaze code -->
<script defer src="./javascript/util.js"></script>
<!-- Everything --->
<script defer src="./javascript/main.js"></script>
</head>
<!-- Body Page -->
<body>
<!--- Background Dummie -->
<section id="background" style="background-image: url('./data/background');"></section>
<!-- Time Block -->
<section id="time-container"><div id="time"></div></section>
<!-- Quote Block -->
<section id="quote-container"><div id="quote" class="dark"></div></section>
<section id="author-container"><div id="author"></div></section>
<section id="source-container"><div id="source"></div></section>
<!-- Links Block -->
<section id="links-container"><div id="links"></div></section>
<!-- Search Block -->
<section id="search-container">
<!-- Button to select different Search engine --->
<form id="form" class="dark" action="link" method="get" target="_self" autocomplete="off">
<input id="input" type="text" placeholder="">
<div id="input-border"></div>
<label id="input-label"></label>
</form>
</section>
<!--- Location Block (empty if there isn't any on config.json) -->
<section id="nothing-container"><div></div></section>
</body>
</html>