-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (43 loc) · 1.05 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="en">
<head>
<meta charset="UTF-8">
<title>GIT-Ignore Builder</title>
<script src="assets/js/js-yaml.js"></script>
<script src="assets/js/gitignore-builder.js"></script>
<style>
main {
max-width: 70em;
margin: 0 auto;
padding: 0 1em;
}
label {
display: block;
margin-bottom: 0.5em;
}
textarea {
width: 100%;
min-height: 30em;
}
</style>
</head>
<body>
<main>
<h1>GIT-Ignore Builder</h1>
<p>
Usage: Select the tools, environments, and frameworks you will be using, and copy/paste the output.
<br/><br/>
This does not provide custom declarations, but leaves a space at the bottom for your own settings.
</p>
<h2>Step 1: Tool Selection</h2>
<section id="selection-area">
<!-- This area generated dynamically -->
</section>
<h2>Step 2: Generated .gitignore Contents</h2>
<!-- This area generated dynamically -->
<textarea id="render-area" readonly="readonly"></textarea>
<h2>Step 3: Profit</h2>
</main>
<script>IgnoreRegistry.Run('ignores/');</script>
</body>
</html>