-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (50 loc) · 3.07 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
<!doctype html>
<html lang="">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<link href="https://fonts.googleapis.com/css?family=Barlow:100,200,300,400|Fira+Mono:400,700|Rubik:300,300i,400,400i,500,500i,700,700i" rel="stylesheet">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
<title>imdl Imgur Album Downloader</title>
<meta name="description" content="imdl Imgur Album Downloading Tool - download entire imgur albums from your web browser">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=1.0,initial-scale=1.0,minimum-scale=1.0,maximum-scale=1.0">
<link rel="icon" href="favicon.ico" type="image/x-icon">
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<link rel="apple-touch-icon" href="img/Apple Home Screen Icon.png">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<link rel="stylesheet" href="css/normalize.min.css">
<link rel="stylesheet" href="https://jackw01.github.io/css/style.css">
<link rel="stylesheet" href="css/extra.css">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-86167050-5"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-86167050-5');
</script>
</head>
<body class="body-dark">
<main>
<div class="main wrapper clearfix">
<h1 class="mainpage-header">imdl</h1>
<h3>Imgur Album Downloader</h3>
<span class="smalltext">© 2018 <a href="http://github.com/jackw01">jackw01</a>. Released under the MIT license. Built with <a href="https://github.com/Stuk/jszip">JSZip</a> and <a href="https://github.com/eligrey/FileSaver.js/">FileSaver.js</a>.</span>
<br><br>
<span class="mediumtext">imdl saves all images in the album along with a JSON file containing album and image details in the format described <a href="https://api.imgur.com/models/album">here</a>.</span>
<br><br>
<div class="flex">
<input type="text" id="input-url" placeholder="Imgur album URL"/>
<a class="button button-rect" id="button-download">Download</a>
</div>
<div class="progress-bar-track" style="display:none"><div class="progress-bar" style="width:0"></div></div>
<span id="error">Album not found.</span>
</div>
</main>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<script src="js/jszip.min.js"></script>
<script src="js/FileSaver.min.js"></script>
<script src="js/main.js"></script>
</body>
</html>