forked from migueravila/bento
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
150 lines (135 loc) · 4.2 KB
/
index.html
File metadata and controls
150 lines (135 loc) · 4.2 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Bento</title>
<link rel=" shortcut icon" type="image/png" href="icons/favicon.png" />
<link rel="stylesheet" href="css/style.css" />
<script src="https://unpkg.com/feather-icons"></script>
</head>
<body class="">
<button id="themeButton">
<i id="themeButton__icon" data-feather="moon"></i>
</button>
<div class="container">
<!-- Clock and Greetings -->
<div class="timeBlock">
<div class="clock">
<div id="hour" class=""></div>
<div id="separator" class=""></div>
<div id="minutes" class=""></div>
</div>
<div id="greetings" class=""></div>
</div>
<!-- Date and Weather -->
<div class="weatherBlock">
<div class="weatherBlock__date">
<div id="month" class=""></div>
<div id="day" class=""></div>
</div>
<div class="weatherBlock__weather">
<div class="weather-icon">
<img src="icons/OneDark/unknown.png" />
</div>
<div class="temperature-value">
<p class="">- °<span class="g">c</span></p>
</div>
<div class="temperature-description">
<p class=""></p>
</div>
</div>
</div>
<!-- Buttons Links -->
<div class="buttonLink">
<a
href="https://github.com/"
target="blank"
class="buttonLink__link card buttonLink__link-1"
>
<i class="buttonLink__icon" data-feather="github"></i>
</a>
<a
target="blank"
href="https://mail.google.com/mail/"
class="buttonLink__link card buttonLink__link-2"
>
<i class="buttonLink__icon" data-feather="mail"></i>
</a>
<a
target="blank"
href="https://monkeytype.com/"
class="buttonLink__link card buttonLink__link-3"
>
<i class="buttonLink__icon" data-feather="calendar"></i>
</a>
<a
target="blank"
href="https://lichess.org/"
class="buttonLink__link card buttonLink__link-4"
>
<i class="buttonLink__icon" data-feather="bookmark"></i>
</a>
<a
href="https://columns.app"
target="blank"
class="buttonLink__link card buttonLink__link-5"
>
<i class="buttonLink__icon" data-feather="trello"></i>
</a>
<a
target="blank"
href="https://www.youtube.com/"
class="buttonLink__link card buttonLink__link-6"
>
<i class="buttonLink__icon" data-feather="youtube"></i>
</a>
</div>
<!-- Lists -->
<div class="card list list__1">
<i class="list__head" data-feather="YouTube"></i>
<a
target="blank"
href="https://www.youtube.com/playlist?list=PLvAij_kszZh0AhMZgIeBQ6h_JP-Azoq60"
class="list__link"
>Music</a
>
<a
target="blank"
href="https://www.youtube.com/playlist?list=WL"
class="list__link"
>ToDo</a
>
</div>
<div class="card list list__2">
<i class="list__head" data-feather="Learning"></i>
<a href="https://asmtutor.com/" target="blank" class="list__link"
>Assembly</a
>
<a href="https://www.learncpp.com/" target="blank" class="list__link"
>CPP</a
>
<a href="https://www.udemy.com/" target="blank" class="list__link"
>Udemy</a
>
<a
href="https://app.hackthebox.eu/login"
target="blank"
class="list__link"
>HackTheBox</a
>
<a href="https://oki.org.pl/lista-zadan-materialy.php" target="blank" class="list__link"
>Algorithmics</a
>
</div>
</div>
<!-- Scrips -->
<script src="js/time.js"></script>
<script src="js/theme.js"></script>
<script src="js/greeting.js"></script>
<script src="js/weather.js"></script>
<script>
feather.replace();
</script>
</body>
<!-- Coded and designed by Miguel R. Ávila: https://github.com/MiguelRAvila -->
</html>