---
-## Install with Foundation CLI
+## Install with Foundation via CLI
-Not a fan of GUIs? The Node-powered Foundation CLI can install the same template projects for you.
+Not a fan of GUIs? Foundation can easily be installed via the CLI. It can install the same template projects for you.
-Install Foundation CLI:
+
+<!-- Install Foundation CLI:
```bash
npm install --global foundation-cli
foundation new
```
-After you selected "Foundation for Sites", Foundation CLI will ask you which template you want to use. You can choose between:
+After you selected "Foundation for Sites", Foundation CLI will ask you which template you want to use. You can choose between: -->
+
+### Basics Template Installation
+
+```bash
+git clone https://github.com/foundation/foundation-sites-template basic-project
+cd basic-project
+yarn install
+yarn start
+```
+
+### Experienced Template Installation
+
+```bash
+git clone https://github.com/foundation/foundation-zurb-template f6-project
+cd f6-project
+yarn install
+yarn start
+```
<div class="grid-x grid-margin-x">
<div class="cell small-6">
</div>
<div class="cell small-6">
- <h3>ZURB template</h3>
+ <h3>Experienced template</h3>
<p>
<b>Recommended for experienced (or curious) users</b><br>
A more advanced project including Foundation and a build process with:
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:
```bash
foundation new --framework sites --template basic
```
+-->
You can manually install the template with:
```bash
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 an advanced project through the Foundation CLI with this command:
```bash
foundation new --framework sites --template zurb
```
+-->
You can manually install the template with:
```bash