Browse Source

first pass on getting started

Nicolas Petton 10 years ago
parent
commit
3c3c2f7aaf
2 changed files with 23 additions and 4 deletions
  1. 22 4
      1-getting-started.md
  2. 1 0
      _includes/head.html

+ 22 - 4
1-getting-started.md

@@ -1,12 +1,30 @@
 ---
-title: Getting started
+title: Quick start guide
 layout: default
 permalink: "getting-started.html"
+next: "overview.html"
 ---
 
-Welcome to Amber! This quick starting guide will walk you through the
-installation process of Amber and the creation of a small Todo
-example.
+Welcome to Amber! This super quick starting guide will get you up and running with Amber.
+
+## Installing Amber
+
+<p class="note">
+The <a href="overview.html">Overview</a> gives more informations about the way Amber is shipped, how to install and load it.
+</p>
+
+To get Amber running, you will need [Bower](http://bower.io) and [Node.js](http://nodejs.org). Then, install the command-line tools with `npm` and Amber with bower:
+
+{% highlight sh %}
+sudo npm install -g amber
+cd myproject/
+bower install --save amber
+{% endhighlight %}
+
+Create an index.html file
+
+
+
 
 <p class="warning">
 This page is unfinished.

+ 1 - 0
_includes/head.html

@@ -3,6 +3,7 @@
   <meta http-equiv="content-type" content="text/html; charset=utf-8" />
   <meta name="author" content="Nicolas Petton" />
   <link rel="stylesheet" type="text/css" href='{{ site.url }}/css/style.css' />
+  <link rel="stylesheet" type="text/css" href='{{ site.url }}/css/pygments.css' />
   <link href='http://fonts.googleapis.com/css?family=Open+Sans:400,300,300italic,400italic,600,600italic,700,700italic,800,800italic' rel='stylesheet' type='text/css'>
   <link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.0.3/css/bootstrap.min.css">
   <script src="http://code.jquery.com/jquery-1.10.1.min.js"></script>