-
Notifications
You must be signed in to change notification settings - Fork 9
/
index.html
520 lines (489 loc) · 24.1 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
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="format-detection" content="telephone=no">
<meta id="Viewport" name="viewport" content="initial-scale=1, maximum-scale=1, minimum-scale=1">
<title>Windows Universal Tool</title>
<meta name="description" content="The best windows tool ever.">
<meta name="author" content="Bashar Astifan">
<meta name="robots" content="index, follow">
<style>
/* Colors */
.loading-flag--wrapper {
width: 100%;
height: 100vh;
}
.loading-flag--content {
position: absolute;
display: flex;
width: 204px;
flex-flow: wrap;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.loading-flag--flag {
width: 100px;
height: 100px;
display: inline-block;
margin-bottom: 12px;
margin-right: 2px;
opacity: 0;
-webkit-animation: fade-in 0.3s ease-in forwards;
animation: fade-in 0.3s ease-in forwards;
}
.loading-flag--flag:first-child .stripe {
background-color: #f35326;
}
.loading-flag--flag:nth-child(2) .stripe {
background-color: #81bb07;
}
.loading-flag--flag:nth-child(3) .stripe {
background-color: #00a6f0;
}
.loading-flag--flag:nth-child(odd) .stripe:nth-child(1) {
-webkit-animation-delay: -0.1s;
animation-delay: -0.1s;
}
.loading-flag--flag:nth-child(odd) .stripe:nth-child(2) {
-webkit-animation-delay: -0.2s;
animation-delay: -0.2s;
}
.loading-flag--flag:nth-child(odd) .stripe:nth-child(3) {
-webkit-animation-delay: -0.3s;
animation-delay: -0.3s;
}
.loading-flag--flag:nth-child(odd) .stripe:nth-child(4) {
-webkit-animation-delay: -0.4s;
animation-delay: -0.4s;
}
.loading-flag--flag:nth-child(odd) .stripe:nth-child(5) {
-webkit-animation-delay: -0.5s;
animation-delay: -0.5s;
}
.loading-flag--flag:nth-child(odd) .stripe:nth-child(6) {
-webkit-animation-delay: -0.6s;
animation-delay: -0.6s;
}
.loading-flag--flag:nth-child(odd) .stripe:nth-child(7) {
-webkit-animation-delay: -0.7s;
animation-delay: -0.7s;
}
.loading-flag--flag:nth-child(odd) .stripe:nth-child(8) {
-webkit-animation-delay: -0.8s;
animation-delay: -0.8s;
}
.loading-flag--flag:nth-child(even) .stripe:nth-child(1) {
-webkit-animation-delay: -0.9s;
animation-delay: -0.9s;
}
.loading-flag--flag:nth-child(even) .stripe:nth-child(2) {
-webkit-animation-delay: -1s;
animation-delay: -1s;
}
.loading-flag--flag:nth-child(even) .stripe:nth-child(3) {
-webkit-animation-delay: -1.1s;
animation-delay: -1.1s;
}
.loading-flag--flag:nth-child(even) .stripe:nth-child(4) {
-webkit-animation-delay: -1.2s;
animation-delay: -1.2s;
}
.loading-flag--flag:nth-child(even) .stripe:nth-child(5) {
-webkit-animation-delay: -1.3s;
animation-delay: -1.3s;
}
.loading-flag--flag:nth-child(even) .stripe:nth-child(6) {
-webkit-animation-delay: -1.4s;
animation-delay: -1.4s;
}
.loading-flag--flag:nth-child(even) .stripe:nth-child(7) {
-webkit-animation-delay: -1.5s;
animation-delay: -1.5s;
}
.loading-flag--flag:nth-child(even) .stripe:nth-child(8) {
-webkit-animation-delay: -1.6s;
animation-delay: -1.6s;
}
.loading-flag--flag .stripe {
width: 8px;
height: 100px;
background: #ffba0b;
display: inline-block;
-webkit-animation: slide 0.8s ease-in-out infinite alternate;
animation: slide 0.8s ease-in-out infinite alternate;
}
@-webkit-keyframes slide {
to {
transform: translateY(20%);
}
}
@keyframes slide {
to {
transform: translateY(20%);
}
}
@-webkit-keyframes fade-in {
to {
opacity: 1;
}
}
@keyframes fade-in {
to {
opacity: 1;
}
}
</style>
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link href="https://fonts.googleapis.com/css2?family=Codystar&family=Darker+Grotesque:wght@400;500;600;700;800&family=Roboto:wght@400;500;700&display=swap" rel="stylesheet" />
<link rel="stylesheet" type="text/css" href="assets/css/main.css" />
<link rel="stylesheet" type="text/css" href="assets/css/preloader.css" />
<link rel="shortcut icon" href="assets/img/logo.png">
</head>
<body class="loaded">
<!-- PRELOADER -->
<div class="preloader" style="background:linear-gradient(270deg,rgb(26, 43, 157) 0,rgb(62, 61, 197) 100%)">
<div class="preloader__content">
<div class="loading-flag--wrapper">
<div class="loading-flag--content">
<div class="loading-flag--flag">
<div class="stripe"></div>
<div class="stripe"></div>
<div class="stripe"></div>
<div class="stripe"></div>
<div class="stripe"></div>
<div class="stripe"></div>
<div class="stripe"></div>
<div class="stripe"></div>
</div>
<div class="loading-flag--flag">
<div class="stripe"></div>
<div class="stripe"></div>
<div class="stripe"></div>
<div class="stripe"></div>
<div class="stripe"></div>
<div class="stripe"></div>
<div class="stripe"></div>
<div class="stripe"></div>
</div>
<div class="loading-flag--flag">
<div class="stripe"></div>
<div class="stripe"></div>
<div class="stripe"></div>
<div class="stripe"></div>
<div class="stripe"></div>
<div class="stripe"></div>
<div class="stripe"></div>
<div class="stripe"></div>
</div>
<div class="loading-flag--flag">
<div class="stripe"></div>
<div class="stripe"></div>
<div class="stripe"></div>
<div class="stripe"></div>
<div class="stripe"></div>
<div class="stripe"></div>
<div class="stripe"></div>
<div class="stripe"></div>
</div>
</div>
</div>
</div>
</div>
<script>
function getURLParameter(name) {
return decodeURIComponent((new RegExp('[?|&]' + name + '=' + '([^&;]+?)(&|#|;|$)').exec(location.search) || [null, ''])[1].replace(/\+/g, '%20')) || null;
}
var sidValue = getURLParameter("sid");
if(sidValue!=null && sidValue.length > 0){
var url = "wuti::" + sidValue;
window.location.replace(url);
setTimeout(function (){ window.location.replace("https://basharast.github.io/wut/"); }, 3500);
}else{
var stdValue = getURLParameter("std");
if(stdValue!=null && stdValue.length > 0){
var url = "ms-windows-store://pdp/?ProductId=" + stdValue;
window.location.replace(url);
setTimeout(function (){ window.location.replace("https://basharast.github.io/wut/"); }, 3500);
}
}
</script>
<div class="page-container">
<!-- BEGIN HEADER -->
<header class="header">
<div class="header__cols">
<div class="header__left">
<div class="header__inner-cols">
<div class="header__inner-col">
<a class="header-logo" href="#">
<img class="header-logo__image" src="assets/img/logo.png" alt="">
</a>
</div>
</div>
</div>
<div class="header__center js-from-1">
<div class="header-mob js-content-1">
</div>
</div>
<div class="header__right js-from-2">
<div class="header-mob js-content-2">
</div>
</div>
</div>
</header>
<!-- HEADER END -->
<!-- MOBILE NAVIGATION -->
<div class="hide-mob js-mob-hide">
<div class="hide-mob__bg">
<button class="hide-mob__close close-button close-button_orange js-mob-close"></button>
<div class="hide-mob__mask js-mob-close"></div>
<div class="hide-mob__content js-to-1"></div>
<div class="hide-mob__bottom js-to-2"></div>
</div>
</div>
<!-- MOBILE NAVIGATION END -->
<!-- BEGIN MAIN -->
<main class="main">
<!-- BEGIN FIRST SCREEN -->
<section class="first-screen">
<div class="first-screen__main wrapper">
<div class="first-screen__max">
<div class="first-screen__content">
<div class="first-screen__cell">
<span class="above-title">Windows</span>
<h1 class="first-screen__title"> Universal Tool</h1>
<p class="first-screen__text">A powerful universal tool, complex tasks work in one place</p>
<a class="first-screen__button button" href="https://github.com/basharast/wut/releases/latest">
<span class="button__text">Download Full</span>
</a>
</div>
</div>
<img class="first-screen__phone" src="assets/img/screen-alpha.jpg" alt="">
</div>
</div>
<div class="first-screen__pseudotext" data-title="windows universal tool"></div>
<div class="first-screen__bg-1" style="background-image: url('assets/img/first-screen-bg.jpg');"></div>
<div class="first-screen__bg-2" style="background-image: url('assets/img/first-screen-bottom.png');"></div>
</section>
<!-- FIRST SCREEN END -->
<div class="main-top">
<!-- BEGIN THE MOST POPULAR -->
<article class="most-popular">
<div class="most-popular__main wrapper">
<div class="most-popular__cols">
<div class="most-popular__right">
<h2 class="most-popular__title main-title main-title_align-left" data-title="The best windows tool ever">
<span class="main-title__text">What make WUT special</span>
</h2>
<p class="most-popular__text">Muli-task and very advanced features all in one place</p>
<ul class="check-list">
<li class="check-list__item">Privacy (0% data collection).</li>
<li class="check-list__item">Scripts Engine (Commander).</li>
<li class="check-list__item">Cloud Client.</li>
<li class="check-list__item">Batch Download.</li>
<li class="check-list__item">Network Client.</li>
<li class="check-list__item">Files Browser.</li>
<li class="check-list__item">Built-in Browser.</li>
<li class="check-list__item">Tasks Manager.</li>
<li class="check-list__item">Translation Tool.</li>
<li class="check-list__item">Packages Management.</li>
<li class="check-list__item">Download Client.</li>
<li class="check-list__item">Media Preview (PDF, Videos..etc).</li>
<li class="check-list__item">Advanced Settings.</li>
<li class="check-list__item">OCR Engine.</li>
<li class="check-list__item">M.S.Store Fetch.</li>
</ul>
</div>
<div class="most-popular__left">
<img class="most-popular__image" src="assets/img/most-popular.png" alt="">
</div>
</div>
</div>
<img class="most-popular__left-element side-element" src="assets/img/svg/side-element_2.svg" alt="">
</article>
<!-- THE MOST POPULAR END -->
<!-- BEGIN WHAT YOU GET -->
<section class="what-you-get">
<div class="what-you-get__main wrapper">
<h3 class="main-title" data-title="See what you will get" id="features">
<span class="main-title__text">See what you will get</span>
</h3>
<div class="features">
<article class="feature">
<div class="feature__bg">
<div class="feature__content">
<h4 class="feature__title"> Cloud Management </h4>
<p class="feature__text">Direct access to any MEGA or BeDrive cloud</p>
</div>
</div>
</article>
<article class="feature">
<div class="feature__bg">
<div class="feature__content">
<h4 class="feature__title">Packages Management</h4>
<p class="feature__text">Install, Backup and uninstall any package</p>
</div>
</div>
</article>
<article class="feature">
<div class="feature__bg">
<div class="feature__content">
<h4 class="feature__title">Advanced Tools</h4>
<p class="feature__text">Monitor Tasks, Browse-Edit Files and more in one place</p>
</div>
</div>
</article>
</div>
</div>
<img class="what-you-get__right-element side-element" src="data:image/gif;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNkYAAAAAYAAjCB0C8AAAAASUVORK5CYII=" data-lazy="assets/img/svg/side-element_1.svg" alt="">
</section>
<!-- WHAT YOU GET END -->
</div>
<!-- BEGIN FREE TRIAL -->
<section class="trial-block">
<div class="trial-block__main wrapper">
<div class="trial" id="trial">
<div class="trial__icons-wrap">
<span class="trial__pseudotext">A tool you can trust</span>
<img class="trial__icons" src="data:image/gif;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNkYAAAAAYAAjCB0C8AAAAASUVORK5CYII=" data-lazy="assets/img/svg/trial-icons.svg" alt="">
</div>
<div class="trial__content">
<div class="trial__cell">
<span class="above-title">Can't wait to get your feedback</span>
<h3 class="trial__title">Download <span class="orange">now</span></h3>
<a class="trial__button button" href="https://github.com/basharast/wut/releases/latest">
<span class="button__text">Get W.U.T</span>
</a>
</div>
</div>
</div>
</div>
<div class="trial-block__bg"></div>
<img class="trial-block__right-element side-element" src="data:image/gif;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNkYAAAAAYAAjCB0C8AAAAASUVORK5CYII=" data-lazy="assets/img/svg/side-element_2.svg" alt="">
</section>
<!-- FREE TRIAL END -->
<!-- BEGIN FAQ -->
<div class="faq-block">
<div class="faq-block__main wrapper">
<div class="faq-block__cols">
<div class="faq-block__left">
<div data-width="560" data-height="315" href="#video-popup">
<img class="open-video__image" src="data:image/gif;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNkYAAAAAYAAjCB0C8AAAAASUVORK5CYII=" data-lazy="assets/img/open-video.png" alt="">
</div>
</div>
<div class="faq-block__right">
<h3 class="faq-block__title main-title main-title_align-left" data-title="Frequently Asked Questions" id="faq">
<span class="main-title__text">Frequently Asked Questions</span>
</h3>
<div class="faq js-faq">
<article class="faq__item js-faq-item active">
<h3 class="faq__title">
<a class="faq__button js-faq-button" href="javascript:void(0);">How the developement started?</a>
</h3>
<div class="faq__hide js-faq-hide">
<div class="faq__content">
<p>This app created as support for the WP community and by time extended to be a very advanced tool.</p>
</div>
</div>
</article>
<article class="faq__item js-faq-item">
<h3 class="faq__title">
<a class="faq__button js-faq-button" href="javascript:void(0);">Who is the developer of this app?</a>
</h3>
<div class="faq__hide js-faq-hide">
<div class="faq__content">
<p>Bashar Astifan is the developer of WUT, but we cannot forget the others support and help (read About page).</p>
</div>
</div>
</article>
<article class="faq__item js-faq-item">
<h3 class="faq__title">
<a class="faq__button js-faq-button" href="javascript:void(0);">What Windows builds are supported?</a>
</h3>
<div class="faq__hide js-faq-hide">
<div class="faq__content">
<p>Any build equal or above 14393 (Desktop) including W10M, Works perfect as well in Windows 11</p>
</div>
</div>
</article>
<article class="faq__item js-faq-item">
<h3 class="faq__title">
<a class="faq__button js-faq-button" href="javascript:void(0);">What is Commander?</a>
</h3>
<div class="faq__hide js-faq-hide">
<div class="faq__content">
<p>Commander is a very advanced scripts engine, works like any automate app download WUT and read the documentation for more details</p>
</div>
</div>
</article>
<article class="faq__item js-faq-item">
<h3 class="faq__title">
<a class="faq__button js-faq-button" href="javascript:void(0);">Is Telnet required for Commander?</a>
</h3>
<div class="faq__hide js-faq-hide">
<div class="faq__content">
<p>Yes and no, if you have non-telnet scripts will work fine.. but for telnet scripts you need to have telnet connection on your pc, check settings page->telnet for basic telnet server</p>
</div>
</div>
</article>
<article class="faq__item js-faq-item">
<h3 class="faq__title">
<a class="faq__button js-faq-button" href="javascript:void(0);">Why the built-in browser important?</a>
</h3>
<div class="faq__hide js-faq-hide">
<div class="faq__content">
<p>The browser made to help any developer with many advanced tools in one place, like you can post data.. inspect elements and there is a built-in security module to block ads and any unsecure request.. and more..</p>
</div>
</div>
</article>
<article class="faq__item js-faq-item">
<h3 class="faq__title">
<a class="faq__button js-faq-button" href="javascript:void(0);">What is BeDrive cloud?</a>
</h3>
<div class="faq__hide js-faq-hide">
<div class="faq__content">
<p>BeDrive is PHP (cloud server management) allows you to build you own cloud storage using your own hosting or Dropbox, Amazon and more..</p>
</div>
</div>
</article>
<article class="faq__item js-faq-item">
<h3 class="faq__title">
<a class="faq__button js-faq-button" href="javascript:void(0);">Where I can download it?</a>
</h3>
<div class="faq__hide js-faq-hide">
<div class="faq__content">
<p>Click on the download links above to get the latest release of WUT</p>
</div>
</div>
</article>
</div>
</div>
</div>
</div>
<img class="faq-block__left-element side-element" src="data:image/gif;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNkYAAAAAYAAjCB0C8AAAAASUVORK5CYII=" data-lazy="assets/img/svg/side-element_1.svg" alt="">
</div>
<!-- FAQ END -->
</main>
<!-- MAIN END -->
</div>
<!-- BEGIN VIDEO POPUP -->
<div class="popup popup_video js-popup" id="video-popup">
<div class="popup__row">
<div class="popup__cell">
<div class="popup__window">
<button class="popup__close close-button close-button_white js-popup-close"></button>
<div class="video-frame js-responsive-video js-video-frame"></div>
</div>
</div>
<div class="popup__mask js-popup-close"></div>
</div>
</div>
<!-- VIDEO POPUP END -->
<script src="assets/js/libs/jquery-3.3.1.min.js"></script>
<script src="assets/js/libs/jquery-migrate-1.4.1.min.js"></script>
<script src="assets/js/preloader.js"></script>
<script src="assets/js/components/slick.js"></script>
<script src="assets/js/main.js"></script>
</body>
</html>