-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
49 lines (42 loc) · 1.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
<!DOCTYPE html>
<html ng-app="RealPython Materials Downloader">
<head>
<meta charset="utf-8" />
<meta name="keywords"
content="GitHub Directory Link, GitHub Directory, Github Link, GitHub Directory Download, GitHub, Download" />
<meta name="description" content="Download RealPython Tutorial Materials" />
<meta name="author" content="RealPython" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>RP Materials Downloader</title>
<link href="https://cdn.realpython.com/static/favicon.68cbf4197b0c.png" rel="icon">
<link href="site.css" rel="stylesheet" />
<script src="https://cdn.jsdelivr.net/npm/jszip@3.10.0/dist/jszip.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/file-saver@2.0.5/dist/FileSaver.min.js"></script>
<script defer src="src/index.js" type="module"></script>
</head>
<body>
<div class="main-container">
<div class="title-container">
<h1>Source Code Downloader</h1>
<img id="logo"
src="https://files.realpython.com/media/realpython-primary-logo.c88c8ebecac9.png" />
<p>Fetch source code for Real Python tutorials</p>
</div>
<div class="download-container error-hide">
<button id="download">Download »</button>
<p class="subtitle">
Click here if your download hasn't started automatically.
</p>
<p>or</p>
</div>
<div class="button-container">
<a id="src-code" href="https://github.com/realpython/materials">
Browse the Source Code »</a>
<a href="https://realpython.com" id="back-to-rp">Visit realpython.com »</a>
</div>
<p>
<a href="https://support.realpython.com/contact/">💬 Contact Support</a>
</p>
</div>
</body>
</html>