-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
130 lines (113 loc) · 5.98 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Folder Template Generator</title>
<meta name="description" content="A tool that helps you create a simple folder structure for your web or video projects. Simple, fast and ready to use.">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" media="screen" href="css/style.css" />
<script src="js/jquery.min.js"></script>
<script src="js/jszip.min.js"></script>
<script src="js/FileSaver.min.js"></script>
<script src="js/jszip-utils.min.js"></script>
<link rel='stylesheet' href='https://fonts.googleapis.com/css?family=Open+Sans:400,300,700'>
</head>
<body>
<div class="center-on-page">
<h1 id="title">Folder Template Generator</h1>
<p id="intro">This tool is all about optimizing processes. How many minutes do you waste creating the same folder structure for every new project? Regardless of whether it's a web or video project, there some folders, which are same on every project. Here comes the folder generator in handy to support your workflow. With simply generating your favorite folders, you're set right away. Save time on your web or video projects! Start generating your folder structure right now.
</p>
<h2>Choose your template...</h2>
<select id="menu">
<option selected="true" disabled="disabled">Choose your type</option>
<option value="video">Film Template</option>
<option value="code">Web Template</option>
</select>
<div id="video">
<h2>Choose your folders...</h2>
<input type="checkbox" id="option1" />
<label for="option1">edit</label></br>
<div class="in" id="option1sub">
<input type="checkbox" id="option1sub1" />
<label for="option1sub1">pr</label></br>
<input type="checkbox" id="option1sub2" />
<label for="option1sub2">drp</label></br>
<input type="checkbox" id="option1sub3" />
<label for="option1sub3">ae</label></br>
<input type="checkbox" id="option1sub4" />
<label for="option1sub4">c4d</label></br>
</div>
<input type="checkbox" id="option2" />
<label for="option2">audio</label></br>
<input type="checkbox" id="option3" />
<label for="option3">footage</label></br>
<div class="in" id="option3sub">
<input type="checkbox" id="option3sub1" />
<label for="option3sub1">canon</label></br>
<input type="checkbox" id="option3sub2" />
<label for="option3sub2">sony</label></br>
<input type="checkbox" id="option3sub3" />
<label for="option3sub3">ursa</label></br>
<input type="checkbox" id="option3sub4" />
<label for="option3sub4">gh5</label></br>
<input type="checkbox" id="option3sub5" />
<label for="option3sub5">drone</label></br>
<input type="checkbox" id="option3sub6" />
<label for="option3sub6">gopro</label></br>
</div>
<input type="checkbox" id="option4" />
<label for="option4">misc</label></br>
<input type="checkbox" id="option5" />
<label for="option5">rendering</label></br>
<input type="checkbox" id="option6" />
<label for="option6">output</label>
<h2>Choose a project name...</h2>
<input type="text" id="titel" placeholder="videotemplate_v1">
<!-- <h2>Just some finetuning...</h2>
<input disabled type="checkbox" id="number" />
<label for="number">add current number (in development)</label> -->
</br>
<button id="download" class="down">Download</button>
</div>
<div id="code">
<h2>Choose your folders...</h2>
<input type="checkbox" id="option21" />
<label for="option21">css</label></br>
<div class="in" id="option21sub">
<input type="checkbox" id="option21sub1" />
<label for="option21sub1">style.css</label></br>
<input type="checkbox" id="option21sub2" />
<label for="option21sub2">boostrap.min.css (4.0.0)</label></br>
<!-- <input type="checkbox" id="option21sub3" />
<label for="option21sub3">circus.min.css</label></br> -->
</div>
<input type="checkbox" id="option22" />
<label for="option22">js</label></br>
<div class="in" id="option22sub">
<input type="checkbox" id="option22sub1" />
<label for="option22sub1">script.js</label></br>
<input type="checkbox" id="option22sub2" />
<label for="option22sub2">jquery.min.js (3.3.1)</label></br>
</div>
<input type="checkbox" id="option23" />
<label for="option23">fonts</label></br>
<input type="checkbox" id="option24" />
<label for="option24">img</label></br>
<input type="checkbox" id="option25" />
<label for="option25">.htaccess</label></br>
<div class="in" id="option25sub">
<input type="checkbox" id="option25sub1" />
<label for="option25sub1">force ssl/gzip</label></br>
</div>
<input type="checkbox" id="option26" />
<label for="option26">index.html</label></br>
<h2>Choose a name...</h2>
<input type="text" id="titel" placeholder="websitetemplate_v1">
<button id="download2" class="down">Download</button>
</div>
<div id="footer">Crafted by <a href="https://kaibrune.com">Kai</a> with the help of <a href="https://codepen.io/raubaca/">Rau</a> and <a href="https://github.com/Stuk">Stuart</a>. </br>༼ つ ◕_◕ ༽つ Contribute on <a href="https://github.com/kaibrune/foldergenerator">Github</a>. Happy generating!</div>
</div>
<script src="js/script.js"></script>
</body>
</html>