forked from mkasberg/script-seed
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
65 lines (55 loc) · 2.86 KB
/
index.html
File metadata and controls
65 lines (55 loc) · 2.86 KB
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="style.css"/>
<link href="https://fonts.googleapis.com/css?family=Roboto+Mono|Roboto+Slab" rel="stylesheet">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.3.1/css/all.css" integrity="sha384-mzrmE5qonljUremFsqc01SB46JvROS7bZs3IO2EmfFsd15uHvIt+Y8vEf7N7fWAU" crossorigin="anonymous">
<link rel="stylesheet" href="highlightjs/styles/solarized-dark.css">
<title>Script Seed</title>
</head>
<body>
<a href="https://github.com/mkasberg/script-seed"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_green_007200.png" alt="Fork me on GitHub"></a>
<div class="container">
<div class="row">
<div class="col-sm text-center">
<h1>🌱 Script Seed</h1>
</div>
</div>
<div class="row">
<div class="col-sm text-center">
<p>Seed scripts for popular scripting languages.</p>
</div>
</div>
<div class="row">
<div class="col-sm">
<select id="langSelect">
<option value="seeds/bash_seed.sh">Bash</option>
<option value="seeds/groovy_seed.groovy">Groovy</option>
<option value="seeds/javascript_seed.js">JavaScript</option>
<option value="seeds/php_seed.php">PHP</option>
<option value="seeds/python_seed.py">Python</option>
<option value="seeds/ruby_seed.rb">Ruby</option>
<option value="seeds/scala_seed.scala">Scala</option>
</select>
</div>
<div class="col-sm text-right">
<a id="copyButton" class="btn btn-primary" role="button" onclick="copyToClipboard()"><i class="far fa-copy"></i></a>
<a id="downloadButton" class="btn btn-primary" role="button" target="_blank"><i class="fas fa-download"></i></a>
</div>
</div>
<div class="row">
<div class="col-sm">
<pre><code id="seedScript" class="language-bash"></code></pre>
</div>
</div>
</div>
<footer class="site-footer">
Script Seed is maintained on <a href="https://github.com/mkasberg/script-seed/">Github</a> by <a href="https://github.com/mkasberg/">Mike Kasberg</a>.
</footer>
<script src="highlightjs/highlight.pack.js"></script>
<script src="main.js"></script>
</body>
</html>