forked from MrAlpha786/getstarted
-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
225 lines (208 loc) · 7.04 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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
<!DOCTYPE html>
<html lang="en" data-theme="dark">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/ico" href="./favicon.ico" />
<link rel="alternate icon" class="js-site-favicon" type="image/png" href="./favicon.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<!-- GetStarted - A simple responsive Startpage
Author: MrAlpha786 (github.con/MrAlpha786) -->
<title>GABEstart</title>
<link rel="stylesheet" href="styles.css" />
<!-- JQUERY REQUIRED FOR LAST.FM SCROBBLER -->
<script type="text/javascript" src="scripts/jquery.min.js"></script>
<script type="text/javascript" src="scripts/lastfm.jquery.js"></script>
<script type="text/javascript">
/*<![CDATA[*/ $(document).ready(function () {
$("#lastBox").lastplayed({
apikey: "518602081119232574d506e55f6d2892",
username: "gabeweb",
limit: 5,
refresh: 30,
});
$("#playingInfo").nowplaying({
apikey: "518602081119232574d506e55f6d2892",
username: "gabeweb",
refresh: 60,
notplayingtext:
'<p class="playing-not"><span style="animation: blink 1s infinite; animation-direction: alternate; color: var(--green);">//</span> Not scrobbling yet...</p>',
});
}); /*]]>*/
</script>
</head>
<body>
<div class="container fade-in">
<h1 class="fade-in" id="main_header">
Good
<div class="fade-in-weather" id="weather-container" title="">
<a href="https://openweathermap.org/city/3647651" target="_blank"
><span id="weather">Loading ... </span>
<img
src=""
class="fade-in-icon"
id="weather-icon"
data-remote-svg-uri=""
data-remote-svg-class="weather-linea"
/></a>
</div>
<span id="greeting" onclick="toggleMode()"></span>
</h1>
<div id="vertical-scroll-box">
<div class="vertical-scroll-box">
<ul>
<li class="item-1"><span id="date-time"></span></li>
<li class="item-2"><span id="time-date"></span></li>
<li class="item-3">
<div id="nowPlaying-container">
<span id="playingInfo"></span>
</div>
</li>
</ul>
</div>
</div>
<div id="search">
<form
id="searchbar"
action="https://duckduckgo.com/?search"
autocomplete="off"
oninput="suggest()"
target="_blank"
>
<!-- for DuckDuckGo use instead: "https://duckduckgo.com/?search" -->
<span id="search-favicon"></span>
<input
autofocus
id="searchInput"
spellcheck="false"
name="q"
placeholder="Search the web"
/>
<button
id="clear-field"
onclick="InputBoxReset('searchInput')"
type="reset"
class="material-icon"
title="Clear"
>
clear
</button>
<button
id="search-button"
onclick="search()"
class="material-icon"
title="Search"
>
search
</button>
</form>
<div id="suggestions"></div>
</div>
<div class="table-container">
<div class="col-container" id="tab-container">
<div class="tab active" data-tab="tab-1">Email</div>
<div class="tab" data-tab="tab-2">News</div>
<div class="tab" data-tab="tab-3">Social</div>
<div class="tab" data-tab="tab-4">Media</div>
<div class="tab" data-tab="tab-5">Tools</div>
</div>
<div class="col-container" id="content-container">
<div class="content active" data-tab="tab-1"></div>
<div class="content" data-tab="tab-2"></div>
<div class="content" data-tab="tab-3"></div>
<div class="content" data-tab="tab-4"></div>
<div class="content" data-tab="tab-5"></div>
</div>
</div>
</div>
<div class="footer">
<div id="footer-inner">
<div id="hideDiv">
<a href="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/gabeweb/gabestart" target="_blank"
>GABEstart</a
>
is a startpage forked by
<a href="https://gabeweb.github.io" target="_blank">GABEweb</a> from
<a href="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/MrAlpha786/getstarted" target="_blank"
>GetStarted</a
>
including some elements from
<a href="https://codepen.io/andyfitz/pen/aZrKdV" target="_blank"
>The Deep Blue (waves)</a
>,
<a href="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/LentoLen/suggestions" target="_blank"
>Suggestions</a
>
and
<a
href="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/FrankFan/jQuery.scrollText.js"
target="_blank"
>jQuery.scrollText.js</a
>.<br />
Weather info from
<a href="https://openweathermap.org">OpenWeatherMap</a>,icons from
<a href="https://carbondesignsystem.com/guidelines/icons/contribute/"
>IBM's Carbon Design System</a
>
and fonts are
<a href="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/IBM/plex" target="_blank">IBM Plex</a> and
<a href="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/IdreesInc/Monocraft" target="_blank"
>Monocraft</a
>.
<br />
Released under a
<a
href="https://github.com/gabeweb/gabestart/blob/main/LICENSE"
target="_blank"
>GPL-3.0 license</a
>.
</div>
<button class="material-icon" title="Info" alt="Info" onclick="buttonClicked()">
info
</button>
</div>
</div>
<!-- WAVE PARALLAX ANIMATION TAKEN FROM
https://codepen.io/andyfitz/pen/aZrKdV
Copyright (c) 2022 Andy Fitzsimon
Licensed under The MIT License (MIT) -->
<div id="waveform-collage">
<svg
class="waves"
xmlns="https://www.w3.org/2000/svg"
xmlns:xlink="https://www.w3.org/1999/xlink"
viewBox="0 24 150 28"
preserveAspectRatio="none"
>
<defs>
<path
id="gentle-wave"
d="M-160 44c30 0
58-18 88-18s
58 18 88 18
58-18 88-18
58 18 88 18
v44h-352z"
/>
</defs>
<g class="parallax">
<use xlink:href="#gentle-wave" x="50" y="0" />
<use xlink:href="#gentle-wave" x="50" y="3" />
<use xlink:href="#gentle-wave" x="50" y="6" />
</g>
</svg>
</div>
<script src="config.js"></script>
<script src="main.js"></script>
<script src="scripts/suggestions.js"></script>
<script src="scripts/jqyery.scrolltext.js"></script>
<script type="text/javascript">
$(function () {
$(".vertical-scroll-box").scrollText({
duration: 20000,
});
});
</script>
<script src="weather/weather.js"></script>
</body>
</html>