-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
77 lines (67 loc) · 2.69 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
<title>Mojito</title>
<!-- CSS -->
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Raleway:400,100,900" type="text/css">
<link rel="stylesheet" href="assets/css/main.css">
</head>
<body>
<a href="https://github.com/floripajs/mojito" class="fork-button">Fork on github</a>
<header class="header">
<div class="header-content">
<h1 class="header-logo">
<span class="header-logo--cup"></span>
<span class="header-logo--text">mojito</span>
</h1>
<p class="header-description">
Gulp (fully ES6) + Sass/Stylus + Livereload
</p>
</div>
</header>
<section class="section">
<h1 class="section-title">Installation</h1>
<ol class="section-list">
<li class="section-list--item">
This project require <a href="http://nodejs.org" target="_blank">Node.js</a>, if not have, install using the <a href="http://nodejs.org" target="_blank">official website</a>.
</li>
<li class="section-list--item">
Install <a href="http://slushjs.github.io" target="_blank">Slush.js</a> if not have, using the command below:
</li>
<pre>
$ [sudo] npm install -g slush
</pre>
<li class="section-list--item">
Install <strong>Mojito</strong> using the command line:
</li>
<pre>
$ [sudo] npm install -g slush-mojito
</pre>
<li class="section-list--item">Finish =]</li>
</ol>
<h1 class="section-title">Using</h1>
<ol class="section-list">
<li class="section-list--item">
First, create a new folder to use the <strong>Mojito</strong>:
</li>
<pre>
$ mkdir awesome-project && cd awesome-project
</pre>
<li class="section-list--item">
Run the <strong>Mojito</strong> command to generate files:
</li>
<pre>
$ slush mojito
</pre>
<li class="section-list--item">Now, answer the questions and enjoy =]</li>
</ol>
</section>
<footer class="footer">
<p class="footer-credits">
Made with <span class="heart">❤</span> by a <a href="https://github.com/floripajs" target="_blank">bunch of geeks</a> from the <a href="https://en.wikipedia.org/wiki/Florian%C3%B3polis" target="_blank">Magic Island</a>
</p>
</footer>
</body>
</html>