Browse Source

Fixes #11

Nicolas Petton 10 years ago
parent
commit
f4556bb7c4
3 changed files with 21 additions and 8 deletions
  1. 1 1
      _layouts/default.html
  2. 1 1
      _layouts/index.html
  3. 19 6
      index.html

+ 1 - 1
_layouts/default.html

@@ -38,7 +38,7 @@ t: 0; border: 0;" src="https://assets.github.com/img/bec6c51521dcc8148146135149f
 
 	<ul id="tabs">
 	    <li><a href="index.html">Overview</a></li> · 
-	    <li><a href="index.html#download">Download</a></li> · 
+	    <li><a href="index.html#get-started">Getting started</a></li> · 
 	    <li><a href="learn.html">Learn</a></li> ·
 	    <li><a id="doc_link" href="documentation.html">Documentation</a></li> ·
 	    <li><a target="_blank" href="https://github.com/NicolasPetton/amber">Source</a></li> 

+ 1 - 1
_layouts/index.html

@@ -75,7 +75,7 @@
 	    <li><a href="https://github.com/amber-smalltalk/amber/wiki">Wiki</a></li>
 	    <li><a href="index.html#getinvolved">Get involved</a></li>
 	    <li><a href="learn.html">Interactive tutorial</a></li>
-	    <li><a href="index.html#download">Download</a></li>
+	    <li><a href="index.html#get-started">Getting Started</a></li>
 	    <li><a target="_blank" href="https://github.com/amber-smalltalk/amber">Github</a></li> 
 	  </ul>
 	</div>

+ 19 - 6
index.html

@@ -59,13 +59,26 @@ With Amber, client-side web development finally gets the power and productivity
   </ul>
 </div>
 <div class="box last">
-  <h2 id="download">Download</h2>
+  <h2 id="get-started">Getting started</h2>
   <div class="content">
-    <p>You can get a copy of Amber from github or clone the <a href="http://github.com/amber-smalltalk/amber">git repository</a>.</p> 
-    <a href="https://github.com/amber-smalltalk/amber/archive/0.12.2.zip">
-      <img border="0" width="90" src="http://github.com/images/modules/download/zip.png"></a>
-    <a href="https://github.com/amber-smalltalk/amber/archive/0.12.2.tar.gz">
-      <img border="0" width="90" src="http://github.com/images/modules/download/tar.png"></a>
+	Amber is shipped as a <a href="http://npmjs.org">npm</a> package for its CLI tools and as a <a href="http://bower.io/">bower</a> package for the client-side.
+
+	<pre>
+	# Install the CLI tool `amber`
+	npm install -g amber
+
+	# Initialize your project as bower package
+	cd /path/to/myproject
+	bower init
+
+	# Load amber via bower in your project
+	bower install amber --save
+
+	# Serve amber on localhost:4000
+	amber serve
+	</pre>
+
+	The <a href="https://github.com/amber-smalltalk/amber/wiki/Getting-started">Getting started</a> page shows more details on ways to obtain Amber and start a project.
   </div>
 </div>