forked from migueravila/Bento
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
158 lines (144 loc) · 4.33 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
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
151
152
153
154
155
156
157
158
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>FX's StartPage</title>
<link rel=" shortcut icon" type="image/png" href="icons/cat.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.qq.com"
class="buttonLink__link card buttonLink__link-2"
>
<i class="buttonLink__icon" data-feather="mail"></i>
</a>
<a
target="blank"
href="https://calendar.google.com/calendar/r"
class="buttonLink__link card buttonLink__link-3"
>
<i class="buttonLink__icon" data-feather="calendar"></i>
</a>
<a
target="blank"
href="https://flipboard.com/"
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="book"></i>
<a
target="blank"
href="https://leetcode-cn.com/problemset/all/"
class="list__link"
>Leetcode</a
>
<a
target="blank"
href="https://www.runoob.com/js/js-tutorial.html"
class="list__link"
>Runoob</a
>
<a
target="blank"
href="https://www.zhihu.com/"
class="list__link"
>Zhihu</a
>
<a
target="blank"
href="https://www.youtube.com/watch?v=dQw4w9WgXcQ"
class="list__link"
>Blog</a
>
</div>
<div class="card list list__2">
<i class="list__head" data-feather="coffee"></i>
<a href="https://www.reddit.com/" target="blank" class="list__link"
>Reddit</a
>
<a href="https://www.bilibili.com/" target="blank" class="list__link"
>BiliBili</a
>
<a href="https://twitter.com/?lang=zh-cn" target="blank" class="list__link"
>Twitter</a
>
<a
href="https://wallhaven.cc/"
target="blank"
class="list__link"
>WallHaven</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>