## Installing
-There are a number of ways to install Foundation for Sites. If you're just getting started, we recommend downloading the Foundation CLI, which allows you to quickly set up starter projects with any Foundation framework.
+There are a number of ways to install Foundation for Sites. If you're just getting started, we recommend downloading Yeti Launch, which allows you to quickly set up starter projects with any Foundation framework. You can also install our Node CLI to do the same thing.
It's also possible to manually install Foundation for Sites into your project through npm, Bower, Meteor, or Composer.
description: There are many ways to install Foundation, but if you're just getting started, we have a few suggestions.
---
-## Command-Line Tool
+## Yeti Launch
-The Node-powered Foundation CLI can install the same template projects for you. Install it with npm:
+Yeti Launch is our Mac app for quickly spinning up blank projects for any of the three Foundation frameworks. If you're just getting started with Foundation, we recommend downloading Yeti Launch to get going right away.
+
+<a href="http://foundation.zurb.com/develop/yetilaunch" class="large button">Download Yeti Launch</a>
+
+### Command-Line Tool
+
+Not a fan of GUIs? The Node-powered Foundation CLI can install the same templae projects for you. Install it with npm:
+
+<div class="callout alert">
+ <p>As Foundation for Sites is in alpha, the CLI doesn't yet support this framework.</p>
+</div>
```bash
npm install --global foundation-cli
If you aren't into Sass, we have a starter template with compiled CSS and JavaScript, as well as a starting `index.html` file for you to hack on. Just unzip and get coding!
-<a href="#" class="large button">Download CSS Version</a>
+<a href="http://foundation.zurb.com/sites/download" class="large button">Download CSS Version</a>
---
- npm: `npm install foundation-sites`
- Bower: `bower install foundation-sites`
- Meteor: `meteor add zurb:foundation-sites`
-- Composer: `php composer.phar require zurb/foundation-sites`
+- Composer: `php composer.phar require zurb/foundation`
### Package Contents
## Loading the Framework
-If you're using one of our starter projects, the Sass compilation process is already set up for you. If not, you can compile our Sass files yourself, or drop in a pre-built CSS file.
+If you're using Yeti Launch or the CLI to create a project, the Sass compilation process is already set up for you. If not, you can compile our Sass files yourself, or drop in a pre-built CSS file.
To get started, first install the framework files using Bower or npm.
## The Settings File
-All Foundation projects include a settings file, named `_settings.scss`. If you're using one of our starter projects, you can find the settings file under src/assets/scss/. If you're installing the framework standalone using Bower or npm, there's a settings file included in those packages, which you can move into your own Sass files to work with.
+All Foundatiion projects include a settings file, named `_settings.scss`. If you're using Yeti Launch or the CLI to create a Foundation for Sites project, you can find the settings file under src/assets/scss/. If you're installing the framework standalone using Bower or npm, there's a settings file included in those packages, which you can move into your own Sass files to work with.
Every component includes a set of variables that modify core structural or visual styles. If there's something you can't customize with a variable, you can just write your own CSS to add it.
---
title: Starter Projects
-description: We have a few starter project templates installed with the Foundation CLI or downloaded manually.
+description: We have a few starter project templates that can be installed with Yeti Launch or the Foundation CLI. You can also download them manually!
---
Our project templates give you a solid... *Foundation* on which to start a new project. Both templates use the [Gulp](http://gulpjs.com) build system to automate the process of compiling Sass, processing JavaScript, copying files, and more.
Our basic project template is a lot like the Sass template from Foundation 5. The project has a flat directory structure and only compiles Sass. It's great if you want to quickly put together a simple project and only need to use Sass.
-You can set up a basic project through the Foundation CLI with this command:
+You can set up a basic project through [Yeti Launch](installation.html), or the Foundation CLI with this command:
```bash
foundation new --framework sites --template basic
The official ZURB Template includes not only Sass processing, but also JavaScript processing, Handlebars templating, and image compression. We use this exact template at ZURB for our client work!
-You can set up a ZURB project through the Foundation CLI with this command:
+You can set up an advanced project through [Yeti Launch](installation.html), or the Foundation CLI with this command:
```bash
foundation new --framework sites --template zurb