-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
91 lines (90 loc) · 4.35 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Lupin | Crystal Task Runner</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="description" content="The all in one Crystal Task Runner. Spend less time building and running commands, focus on your code instead.">
<meta name="viewport" content="width=device-width, initial-scale=1, minimal-ui">
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="format-detection" content="telephone=no">
<meta property="og:title" content="Lupin | Crystal Task Runner">
<meta property="og:site_name" content="Lupin">
<meta property="og:description" content="The all in one Crystal Task Runner. Spend less time building and running commands, focus on your code instead.">
<meta property="og:type" content="website">
<meta property="og:locale" content="en_US">
<meta property="og:url" content="https://lupincr.com">
<meta property="og:image" content="https://lupincr.com/assets/thumbnail.png">
<link rel="schema.DC" href="https://purl.org/dc/elements/1.1/">
<link rel="schema.DCTERMS" href="https://purl.org/dc/terms/">
<meta name="DC.title" content="Lupin | Crystal Task Runne">
<meta name="DC.creator" content="Mark Molnar, Milan Szekely">
<meta name="DC.date" content="2018">
<meta name="DC.type" content="website">
<meta name="DC.language" content="en">
<link rel="apple-touch-icon" href="assets/apple-touch-icon.png">
<link rel="shortcut icon" type="image/png" href="assets/icon.png" sizes="150x150">
<link rel="icon" type="image/png" href="assets/icon.png" sizes="150x150">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div id="note">
As you can see, Lupin has just released. Please bear with us as we are working on extending the documentation & this website with examples!
</div>
<div id="margin">
<nav>
<img src="assets/lupin-text-logo.png" ondragstart="return false">
<ul class="links">
<li><a href="https://github.com/lupincr/lupin/blob/master/docs/1-getting-started.md">Getting Started</a></li>
<li><a href="https://github.com/lupincr/lupin/blob/master/docs">Docs</a></li>
<li><a href="https://github.com/lupincr/lupin">GitHub</a></li>
</ul>
</nav>
<div id="hero">
<img src="assets/lupin-paw-logo.png" ondragstart="return false">
<h2>The all in one Crystal Task Runner</h2>
<h3>Spend less time building and running commands, focus on your code instead.</h3>
</div>
</div>
<div class="divider">
<img src="assets/lupin-divider.png" ondragstart="return false">
</div>
<div class="block">
<div class="block-text">
<h2>Installation</h2>
<h3>Run the install script which will build & install Lupin globally:</h3>
<div class="code-snippet" title="Copied!">
curl -s https://lupincr.com/install/lupin.sh | sh
</div>
<h3>Make sure that $HOME/.lupin is inside your $PATH.</h3>
<p>After that, the <b>lupin</b> command should be ready to use.</p>
</div>
</div>
<div class="divider">
<img src="assets/lupin-divider.png" ondragstart="return false">
</div>
<div class="block">
<div class="block-text">
<h2>What's Lupin?</h2>
<h3>Lupin is here to provide the same workflow experience one might benefit from using JavaScript & Gulp.</h3>
<h3>Lupin is lets you define tasks, plug community-made plugins in them, and all in all helps you automate your workflow.</h3>
</div>
</div>
<div class="divider">
<img src="assets/lupin-divider.png" ondragstart="return false">
</div>
<div class="block block-sponsors">
<div class="block-text">
<h2>Maintainers</h2>
<h3>Lupin wouldn't exist without these people!</h3>
<div id="sponsor-images">
<a href="https://github.com/molnarmark"><img src="assets/sponsors/mark.png" ondragstart="return false"></a>
<a href="https://github.com/szekelymilan"><img src="assets/sponsors/milan.png" ondragstart="return false"></a>
</div>
</div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/clipboard.js/2.0.1/clipboard.min.js" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/tippy.js/2.5.4/tippy.all.min.js" crossorigin="anonymous"></script>
<script src="script.js" type="text/javascript"></script>
</body>
</html>