-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
40 lines (36 loc) · 1.43 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Steampunk Spider</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/steampunkspider.css" rel="stylesheet">
</head>
<body>
<main class="container">
<h1>Steampunk Spider</h1>
<p class="description text-muted">Generate reddit markdown from Steam links.</p>
<textarea name="data-input" id="data-input" class="form-control" placeholder="Paste Steam URLs here"></textarea>
<button id="generate-data" class="btn btn-lg btn-primary">Generate Table <span id="generate-data-indicator"></span></button>
<span id="status"></span>
<div id="data-output-wrapper" class="hidden">
<hr>
<textarea id="data-output" class="form-control" readonly></textarea>
<button id="select-markdown" class="btn btn-md btn-primary">Select Markdown</button>
</div>
</main>
<footer class="navbar navbar-default">
<div class="container">
<div class="navbar-text">
<p>By <a href="https://wescook.ca/">Wes Cook</a></p>
<p><a href="https://github.com/WesCook/SteampunkSpider">Version 1.2.0</a></p>
</div>
</div>
</footer>
<script src="https://code.jquery.com/jquery-3.4.1.js"></script>
<script src="js/steampunkspider.js"></script>
<script src="js/bootstrap.min.js"></script>
</body>
</html>