-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathindex.html
333 lines (323 loc) · 13.7 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
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="description" content="A customizable music player" />
<meta name="keywords"
content="moosync,spotify,youtube,songs,playlist,music,desktop,application,player,music player,musicplayer,open,source,opensource,custom,customizable,customisable,download,windows,linux,mac,osx,darwin," />
<meta name="author" content="Moosync" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width = device-width, initial-scale=1.0" />
<meta name="theme-color" content="#ffffff" />
<meta name="msapplication-TileColor" content="#da532c" />
<link rel="apple-touch-icon" sizes="180x180" href="/assets/favicon/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="/assets/favicon/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/assets/favicon/favicon-16x16.png" />
<link rel="manifest" href="/assets/favicon/site.webmanifest" />
<link rel="mask-icon" href="/assets/favicon/safari-pinned-tab.svg" color="#5bbad5" />
<link rel="stylesheet" type="text/css" href="/assets/css/index.css" />
<meta property="og:title" content="Moosync" />
<meta property="og:description" content="A customizable music player" />
<meta property="og:site_name" content="Moosync" />
<meta property="og:url" content="https://moosync.app" />
<meta property="og:image" content="https://moosync.app/assets/img/preview.png" />
<meta property="og:image:secure_url" content="https://moosync.app/assets/img/preview.png" />
<meta property="og:image:type" content="image/jpeg" />
<meta property="og:image:width" content="1440" />
<meta property="og:image:height" content="1024" />
<meta property="og:image:alt" content="Moosync logo" />
<title>Moosync</title>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "Moosync",
"keywords": "moosync,music,player,app,desktop",
"url": "http://moosync.app",
"logo": "http://moosync.app/assets/img/logo.svg",
"email": "[email protected]"
}
</script>
<!-- Start Single Page Apps for GitHub Pages -->
<script type="text/javascript">
// Single Page Apps for GitHub Pages
// MIT License
// https://github.com/rafgraph/spa-github-pages
// This script checks to see if a redirect is present in the query string,
// converts it back into the correct url and adds it to the
// browser's history using window.history.replaceState(...),
// which won't cause the browser to attempt to load the new url.
// When the single page app is loaded further down in this file,
// the correct url will be waiting in the browser's history for
// the single page app to route accordingly.
(function (l) {
if (l.search[1] === "/") {
var decoded = l.search
.slice(1)
.split("&")
.map(function (s) {
return s.replace(/~and~/g, "&");
})
.join("?");
window.history.replaceState(
null,
null,
l.pathname.slice(0, -1) + decoded + l.hash
);
}
})(window.location);
</script>
<!-- End Single Page Apps for GitHub Pages -->
<script src="/assets/js/index.js" type="module"></script>
</head>
<body class="main" id="body">
<nav class="nav__bar">
<a href="#">
<span class="title__logo">
<span class="logo">
<img loading="lazy" src="/assets/img/logo.svg" title="Moosync" alt="moosync logo" class="logo__img" />
</span>
</a>
<div class="navbar__buttons">
<button class="navigation__buttons"><a href="#">Home</a></button>
<button class="navigation__buttons">
<a href="https://www.iubenda.com/privacy-policy/70189564/full-legal" target="_blank"
rel="noopener noreferrer">Privacy Policy</a>
</button>
<button class="navigation__buttons">
<a href="/wiki/" rel="noopener noreferrer">Documentation</a>
</button>
<button class="navigation__buttons">
<a href="https://github.com/Moosync" rel="noopener noreferrer">Github</a>
</button>
<button id="download__btn" class="navigation__buttons">Download</button>
</div>
<div class="moosync__navbar-mobileScreen">
<img
loading="lazy"
src="/assets/img/hamburgerIcon.svg"
alt="Menu"
id="hamburger-open"
/>
<div
class="moosync__navbar-mobileScreen-overlayClose flex__center slide__bottom"
id="menu-overlay"
>
<img
loading="lazy"
src="/assets/img/hamburgerCloseIcon.svg"
alt="Close"
id="hamburger-close"
/>
<ul class="moosync__navbar-mobileScreen-links">
<li class="p__normal" id="home"><a href="#">Home</a></li>
<li class="p__normal" id="privacy">
<a
href="https://www.iubenda.com/privacy-policy/70189564/full-legal"
>Privacy Policy</a
>
</li>
<li class="p__normal" id="documentation">
<a href="/wiki/">Documentation</a>
</li>
<li class="p__normal" id="github">
<a href="https://github.com/Moosync/Moosync">Github</a>
</li>
<li id="download">
<button
type="button"
name="button"
class="navigation__buttons"
id="download__btn"
>
Download
</button>
</li>
</ul>
</div>
</div>
</nav>
<header class="heading__page">
<span id="heading__info__text__1" class="info__text__1">An Open Source Music Player</span>
<span class="title__line">A music player <br />
For the community</span>
<div class="circle__div__container">
<div class="music__person__img__container">
<img loading="lazy" id="music__person__img" loading="lazy" src="/assets/img/person.png" alt="" />
</div>
<div id="circle__div__1" class="circle__div">
<div id="circle__div__2" class="circle__div"></div>
</div>
<div id="circle__div__3" class="circle__div">
<audio id="music" src="" type="audio/mpeg" volume="0.2"></audio>
<div class="playbutton__container">
<img loading="lazy" src="/assets/img/musicbutton.svg" title="Play" alt="" class="play__button__img"
id="playButton" />
<img loading="lazy" src="/assets/img/playbutton.svg" title="Play" alt="" class="play__button__icon"
id="playButtonIcon" />
</div>
</div>
</div>
<div id="downloads" class="buttons">
<template id="download-template-multi">
<div class="select__container">
<div class="select__box">
<div class="options__container" id="options-container"></div>
<div class="selected">
<i id="download-icon" class="icons"></i>
<div class="download__text" id="download-text">
Download for ${os}
<span class="version__text">${version}</span>
</div>
<img loading="lazy" class="arrow__down" src="/assets/img/arrow-down.svg" alt="down arrow" />
</div>
</div>
</div>
</template>
<template id="download-template-single">
<button id="download-button" title="Click to download for ${os}" class="link__buttons">
<i id="download-icon" class="icons"></i>Download ${version}
</button>
</template>
</div>
<a class="other__platform" href="https://github.com/Moosync/Moosync/releases/latest">Download for other
platforms
</a>
</header>
<section class="moosync__usage">
<p id="usage__section__heading" class="moosync__section__heading">
Why use Moosync
</p>
<div class="usage__icons__text">
<span class="usage">
<img loading="lazy" src="/assets/img/usageIcon1.svg" alt="" class="usage__icons" />
<span class="info__text__4">Customizable theme engine & Easy to use interface</span>
</span>
<span class="usage">
<img loading="lazy" src="/assets/img/usageIcon2.svg" alt="" class="usage__icons" />
<span class="info__text__4">Develop own apps on top of Moosync Extension API</span>
</span>
</div>
<div id="usage__icons__text__mid" class="usage__icons__text">
<span id="usage__mid" class="usage">
<img loading="lazy" src="/assets/img/usageIcon3.svg" alt="" class="usage__icons" />
<span class="info__text__4">Seamlessly integrate your Spotify and Youtube playlists.</span>
</span>
<span class="usg_mid">
<img loading="lazy" src="/assets/img/laptopbg.png" alt="" id="usage__mid__img" />
</span>
<span id="usage__mid" class="usage">
<img loading="lazy" src="/assets/img/usageIcon4.svg" alt="" class="usage__icons" />
<span class="info__text__4">Play songs directly from Youtube and Spotify</span>
</span>
</div>
<div class="usage__icons__text">
<span class="usage">
<img loading="lazy" src="/assets/img/usageIcon5.svg" alt="" class="usage__icons" />
<span class="info__text__4">Track your music with LastFm and get recommendations</span>
</span>
<span class="usage">
<img loading="lazy" src="/assets/img/usageIcon6.svg" alt="" class="usage__icons" />
<span class="info__text__4">Add Spotify and Youtube tracks and playlists by URLs</span>
</span>
</div>
</section>
<section class="moosync__numbers">
<p class="moosync__section__heading">Some counts that matter</p>
<div class="moosync__countbox__container">
<div class="count__box">
<p id="downloads__count">100+</p>
<p id="downloads__description">Downloads</p>
</div>
<div class="count__box">
<p id="discord__count">15+</p>
<p id="discord__description">Online in Discord</p>
</div>
<div class="count__box">
<p id="contri__count">7+</p>
<p id="contri__description">Active Contributors</p>
</div>
<div class="count__box">
<p id="programs__count">3+</p>
<p id="programs__description">Programs Participated</p>
</div>
</div>
<div id="moosync__numbers__button" class="buttons">
<a href="https://discord.gg/HsbqbRune3" target="_blank" rel="noopener noreferrer">
<button title="Join us on Discord" class="link__buttons">
<img loading="lazy" src="/assets/img/discordLogo.svg" alt="" class="icons" id="discord__icon" />Join Discord
</button>
</a>
<a href="https://github.com/Moosync/Moosync" target="_blank" rel="noopener noreferrer">
<button title="Contribute to Moosync" class="link__buttons">
<img loading="lazy" src="/assets/img/githubIcon.svg" alt="" class="icons" id="discord__icon" />Contribute
</button>
</a>
</div>
</section>
<footer class="footer__section">
<div class="footer__container">
<div id="left__footer__content" class="footer__content">
<a href="#home__page">
<span class="title__logo">
<img loading="lazy" src="/assets/img/logo.svg" title="Moosync" alt="" id="footer__logo" class="logo__img" />
<span class="title">moosync</span>
</span>
</a>
<p id="footer__info__text__2" class="info__text__2">
Incase of any query or suggestion<br />feel free to reach us.
</p>
<a href="mailto:[email protected]">
<p class="info__text__3">
<img loading="lazy" src="/assets/img/link.svg" alt="" id="link__icon" />
</p>
</a>
</div>
<div id="right__footer__content__wrapper">
<div id="right__footer__content" class="footer__content">
<div class="general__info__links">
<div class="footer__general">
<span id="footer__info__text__heading" class="info__text__1">general</span>
<ul class="general__info__link__list">
<li class="list__items">
<a class="list-items-link" href="https://www.iubenda.com/privacy-policy/70189564/full-legal"
target="_blank" rel="noopener noreferrer">Privacy Policy</a>
</li>
<li class="list__items">
<a class="list-items-link" href="/docs/index.html" rel="noopener noreferrer">Extension
Documentation</a>
</li>
<li class="list__items">
<a class="list-items-link" href="wiki/" rel="noopener noreferrer">Wiki</a>
</li>
</ul>
</div>
<div id="right__footer__general" class="footer__general">
<span id="footer__info__text__heading" class="info__text__1">community</span>
<ul class="general__info__link__list">
<li class="list__items">
<a class="list-items-link" href="https://github.com/Moosync" target="_blank"
rel="noopener noreferrer">GitHub Repositories</a>
</li>
<li class="list__items">
<a class="list-items-link" href="https://discord.gg/HsbqbRune3" target="_blank"
rel="noopener noreferrer">Join us on Discord</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div id="notice">
<p class="notice__text">
Moosync's use and transfer to any other app of information received
from Google APIs will adhere to the Google API Services User Data
Policy, including the Limited Use requirements.
</p>
</div>
<span id="copyright__text">Copyright © 2022 Moosync</span>
</footer>
</body>
</html>