-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
275 lines (223 loc) · 9.21 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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
<!DOCTYPE html>
<html class="no-js">
<head>
<meta charset="utf-8">
<title>INIT • An initial boilerplate for front-end projects</title>
<meta name="description" content="Init is an initial boilerplate for
front-end projects which adds more complexity to your
application.">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="dns-prefetch" href="//twitter.com">
<link rel="dns-prefetch" href="//platform.twitter.com">
<link rel="dns-prefetch" href="//www.google-analytics.com">
<link rel="dns-prefetch" href="//si0.twimg.com">
<link rel="dns-prefetch" href="//p.twitter.com">
<link rel="dns-prefetch" href="//cdn.api.twimg.com">
<link rel="stylesheet" href="css/main.css">
<script src="components/modernizr/modernizr.js"></script>
</head>
<body>
<!--[if lt IE 8]>
<p class="browsehappy">You are using an <strong>outdated</strong>
browser. Please
<a href="http://browsehappy.com/">upgrade your browser</a> to
improve your experience.</p>
<![endif]-->
<!-- The fixed header -->
<header class="site-header">
<a href="#content" class="visuallyhidden focusable">Skip to content</a>
<nav class="site-navigation" id="navigation" role="navigation">
<a href="#" class="navigation-close" role="button">Close</a>
<ul>
<li class="site-logo" role="banner"><a href="#">INIT</a></li>
<li><a href="#getting-started">Getting Started</a></li>
<li><a href="https://github.com/use-init/init/blob/master/docs/TOC.md">Documentation</a></li>
<li><a href="https://github.com/use-init/init">The Code</a></li>
</ul>
</nav>
<a href="#navigation" class="navigation-open" role="button">Menu</a>
<div class="hero">
<div class="claim">
<p>INIT is based upon HTML5 Boilerplate and adds more structure for your files, includes a build process with GruntJS and a whole lot more.</p>
</div>
<p class="hero-credits">Picture by <a href="http://cfremdt.de/">Christoph Fremdt</a></p>
</div>
</header>
<!-- Main Content area -->
<main id="content" role="main" class="site-content">
<section id="download" class="download">
<div class="container">
<p>
<a href="https://github.com/use-init/init/archive/v1.4.0.zip"
class="download-link">Download v1.4.0</a><br>
<a href="https://github.com/use-init/init/blob/master/CHANGELOG.md"
class="download-changelog">View Changelog</a>
</p>
<p>
<a href="https://twitter.com/share"
class="twitter-share-button"
data-count="none"
data-size="large">Tweet</a>
</p>
<p class="download-github">
<a href="https://github.com/use-init/init"><i class="icon-github">GitHub</i></a>
This project is <a href="https://github.com/use-init/init">on GitHub</a>. Go fork it.
</p>
</div>
</section>
<section id="why-init" class="why">
<h2>Why INIT?</h2>
<p>INIT aims to provide you with a decent workflow and structure
within your sophisticated web project. Please go through
@drublic's
<a href="http://drublic.github.io/socoded-init/">slides
from SoCoded Conference</a> talking about the hassle to
start Front-End web projects.</p>
<p>Here are some advantages you have with INIT:</p>
<ul>
<li>All basics provided</li>
<li>Nearly no default code (only what you will need anyway)</li>
<li>Scalable architecture</li>
<li>Works with most UI frameworks</li>
<li>Integrated workflow</li>
</ul>
<h3>Integrated tools</h3>
<ul>
<li>HTML5 Boilerplate</li>
<li>normalize.css</li>
<li>Modernizr (custom build based on what you use) & jQuery libraries</li>
<li>GruntJS (integrated watch, development & build tasks)</li>
<li>Bower for package management in the Front-End</li>
<li>RequireJS for a module-based development approach</li>
<li>Sass workflow including <a href="https://github.com/drublic/Sass-mixins">some helpful mixins</a></li>
<li>A testing workflow with Jasmine and Karma</li>
</ul>
<p>If you want to know more about INIT please <a href="https://github.com/use-init/init/blob/master/docs/TOC.md">check out the documentation</a>.</p>
</section>
<section id="getting-started" class="starting">
<h2>Getting Started</h2>
<p>The easiest way to set up INIT<sup><a href="#sup1">*</a></sup>:</p>
<pre><code>$ git clone [email protected]:use-init/init.git
$ npm install -g grunt-cli
$ npm install</code></pre>
<p>This will install all the things you need for running the
grunt-tasks automatically.</p>
<p>Also it will create a folder `components` which holds all
vendor dependencies managed by Bower.</p>
<p><small><a id="sup1">*</a>You need to have a running
<a href="http://nodejs.org/">node.js</a> and
<a href="https://www.ruby-lang.org/en/">ruby</a> along with
<a href="https://npmjs.org/">npm</a>,
<a href="http://sass-lang.com/">Sass</a> and
<a href="http://bower.io/">bower</a>. Please install this
before setting up INIT in your project's directory.</small>
</p>
<h3>Troubleshooting</h3>
<p>If running the install does not work, please try running it
as with admin-rights:</p>
<pre><code>$ sudo npm install -g grunt-cli</code></pre>
<p>Now you can start developing your site. Therefore use the
GruntJS task:</p>
<pre><code>$ grunt</code></pre>
<p>or run grunt tasks continuously watching file changes:</p>
<pre><code>$ grunt watch</code></pre>
<h2>Structure</h2>
<p>INIT's structure isn’t hard to understand. Please refer to
<a href="https://github.com/use-init/init/blob/master/docs/TOC.md">the
documentation</a> to get to know the details.</p>
</section>
<section id="build-upon" class="build-upon">
<h2>INIT builds upon the best</h2>
<ul>
<li>
<a href="http://html5boilerplate.com/">
<img src="img/html5bp.png" alt="The HTML5BP Logo">
HTML5 Boilerplate
</a>
</li>
<li>
<a href="http://bower.io/" alt="The Bower Logo">
<img src="img/bower.png">
Bower
</a>
</li>
<li>
<a href="http://gruntjs.com/" alt="The Grunt Logo">
<img src="img/grunt.png">
Grunt
</a>
</li>
</ul>
</section>
<section id="extend" class="extend">
<h2>INIT is extendable</h2>
<p>It is easy to extend and adapt INIT to your needs. There are already some core <a href="https://github.com/search?q=%40use-init+init-">plugins available</a> as well as a <a href="https://github.com/use-init/generator-init">Yeoman Generator called <code>generator-init</code></a>.</p>
</section>
<section id="credits" class="credits">
<h2>Credits</h2>
<p>The INIT logo was designed by Jan von Beckerath at
<a href="http://nimius.net/">NIMIUS</a> and optimized by
<a href="http://www.stn.my/">Stefan Nitzsche</a>.</p>
</section>
<section id="license" class="license">
<h2>License</h2>
<p>This project is under the Open Source MIT license. Find more
information in the
<a href="https://github.com/use-init/init/tree/master/LICENSE.md">LICENSE</a>
file.</p>
</section>
</main>
<!-- Some site-information -->
<footer class="site-footer">
<div class="container">
<p>INIT is a project by</p>
<ul class="maintainers">
<li>
<a href="https://twitter.com/drublic"
title="Follow @drublic on Twitter">
<img src="img/drublic.jpg">
</a>
<a href="http://drublic.de/">Hans Christian Reinl</a>
<a href="https://twitter.com/drublic"
class="twitter-follow-button"
data-show-count="false">Follow @drublic</a>
</li>
<li>
<a href="https://twitter.com/helloanselm"
title="Follow @helloanselm on Twitter">
<img src="img/anselm.jpg">
</a>
<a href="http://helloanselm.com/">Anselm Hannemann</a>
<a href="https://twitter.com/helloanselm"
class="twitter-follow-button"
data-show-count="false">Follow @helloanselm</a>
</li>
</ul>
<p>
and <a href="https://github.com/use-init/init/graphs/contributors">other
contributors</a>.
<a href="https://github.com/use-init/init/tree/master/CONTRIBUTING.md">Get
involved</a>.
</p>
<p>
This project is under
<a href="https://github.com/use-init/init/tree/master/LICENSE.md">MIT
License</a>.
</p>
</div>
</footer>
<script src="components/jquery/dist/jquery.min.js"></script>
<script src="components/jquery-requestAnimationFrame/dist/jquery.requestAnimationFrame.min.js"></script>
<script src="js/main.js"></script>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script>
<!-- Google Analytics -->
<script>
(function(b,o,i,l,e,r){b.GoogleAnalyticsObject=l;b[l]||(b[l]=
function(){(b[l].q=b[l].q||[]).push(arguments)});b[l].l=+new Date;
e=o.createElement(i);r=o.getElementsByTagName(i)[0];
e.src='//www.google-analytics.com/analytics.js';
r.parentNode.insertBefore(e,r)}(window,document,'script','ga'));
ga('create','UA-45228510-1');ga('send','pageview');
</script>
</body>
</html>