forked from migueravila/Bento
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (49 loc) · 1.29 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>(´・ω・)っ由</title>
<link rel="stylesheet" href="assets/style/app.css" />
<script src="https://unpkg.com/lucide@latest"></script>
</head>
<!--
╔╗ ╔═╗╔╗╔╔╦╗╔═╗
╠╩╗║╣ ║║║ ║ ║ ║
╚═╝╚═╝╝╚╝ ╩ ╚═╝
-->
<body class="">
<div class="container">
<!-- Clock and Greetings -->
<div class="timeBlock">
<div class="clock">
<div id="hour"></div>
<div id="separator"></div>
<div id="minutes"></div>
</div>
<div class="date">
<div id="month"></div>
<div id="day"></div>
</div>
<div id="greetings"></div>
</div>
<div class="linksBlock" id="linksBlock"></div>
<div class="imageBlock" id="imgBlock">
<img src="assets/wall.png" /img>
</div>
</div>
<!-- Config -->
<script src="assets/config.js"></script>
<!-- Scripts -->
<script src="assets/js/layout.js"></script>
<script src="assets/js/time.js"></script>
<script src="assets/js/greeting.js"></script>
<!-- Generators -->
<script src="assets/js/buttons.js"></script>
<!-- Icons -->
<script>
lucide.createIcons();
</script>
</body>
<!-- Developed and designed by Miguel Ávila: -->
<!-- https://avila.sh-->
</html>