Added source.html
parent
569f66e7b8
commit
dd7d85222f
|
@ -18,9 +18,7 @@
|
||||||
<ul>
|
<ul>
|
||||||
<li id="about"><a href="/">About</a></li>
|
<li id="about"><a href="/">About</a></li>
|
||||||
<li id="manual"><a href="man.html">Manual</a></li>
|
<li id="manual"><a href="man.html">Manual</a></li>
|
||||||
<li id="source">
|
<li id="source"><a href="source.html">Source Code</a></li>
|
||||||
<a href="https://github.com/mikegerwitz/easejs">Source Code</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,34 @@
|
||||||
|
<p>
|
||||||
|
ease.js is <a href="http://www.gnu.org/philosophy/free-sw.html">free
|
||||||
|
software</a>; you are free to use and redistribute it under terms of the
|
||||||
|
<a href="http://www.gnu.org/licenses/lgpl.html">LGPL v3</a> or, at your
|
||||||
|
option, any later version.
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
The source code is officially hosted at the following locations.
|
||||||
|
<a href="http://git-scm.org">Git</a> is used as the version control system.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<h3>Gitorious</h3>
|
||||||
|
<a href="http://gitorious.org/easejs">Gitorious</a> is recommended, as it is
|
||||||
|
itself is free software.
|
||||||
|
|
||||||
|
<blockquote class="git-clone">
|
||||||
|
<span class="shell-start">$</span> git clone
|
||||||
|
git://gitorious.org/easejs/easejs.git
|
||||||
|
</blockquote>
|
||||||
|
|
||||||
|
<h3>GitHub</h3>
|
||||||
|
<a href="https://github.com/mikegerwitz/easejs">GitHub</a> is a popular social
|
||||||
|
coding platform. While the code is hosted there and you are free to make use of
|
||||||
|
GitHub's services, note that GitHub is proprietary and ease.js does not endorse
|
||||||
|
it, nor make use of its services. It is used purely for hosting.
|
||||||
|
|
||||||
|
<blockquote class="git-clone">
|
||||||
|
<span class="shell-start">$</span> git://github.com/mikegerwitz/easejs.git
|
||||||
|
</blockquote>
|
||||||
|
|
||||||
|
<h3>Manual</h3>
|
||||||
|
See <a href="manual/Integration.html#Integration">Chapter 1 of the manual</a>
|
||||||
|
for more information on downloading and integrating ease.js into your own
|
||||||
|
projects.
|
15
style.css
15
style.css
|
@ -118,12 +118,14 @@ html, body {
|
||||||
|
|
||||||
#menu a:hover,
|
#menu a:hover,
|
||||||
body.index #about a,
|
body.index #about a,
|
||||||
body.man #manual a {
|
body.man #manual a,
|
||||||
|
body.source #source a {
|
||||||
background-color: #204a87;
|
background-color: #204a87;
|
||||||
}
|
}
|
||||||
|
|
||||||
body.index #about a,
|
body.index #about a,
|
||||||
body.man #manual a {
|
body.man #manual a,
|
||||||
|
body.source #source a {
|
||||||
color: #f57900;
|
color: #f57900;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -289,3 +291,12 @@ p.copyright a, p.copyright a:link {
|
||||||
font-family: monospace;
|
font-family: monospace;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
blockquote.git-clone {
|
||||||
|
font-family: fixed;
|
||||||
|
font-weight: lighter;
|
||||||
|
}
|
||||||
|
|
||||||
|
span.shell-start {
|
||||||
|
font-weight: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue