]> git.ipfire.org Git - thirdparty/foundation/foundation-sites.git/commitdiff
docs: remove foundation-cli from docs
authorJoe Workman <joe@workmanmail.com>
Tue, 12 Jul 2022 00:01:34 +0000 (17:01 -0700)
committerJoe Workman <joe@workmanmail.com>
Tue, 12 Jul 2022 00:01:34 +0000 (17:01 -0700)
closes #12436

docs/pages/installation.md
docs/pages/starter-projects.md

index 3190828e0efac2231cb461accb738dedc9711eef..ece90e177d6479a3320187a8751d008f2eb6a02e 100644 (file)
@@ -50,11 +50,12 @@ Here's what comes in the package.
 
 ---
 
-## 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
@@ -71,7 +72,25 @@ Then use to create a new Foundation project:
 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">
@@ -96,7 +115,7 @@ After you selected "Foundation for Sites", Foundation CLI will ask you which tem
   </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:
index 91546edeb0e3028252c44626af24cd73d9fdc6d9..714ccc0bed336b01a0c8548c2311bf46e51075dd 100644 (file)
@@ -16,11 +16,13 @@ Our project templates give you a solid... *Foundation* on which to start a new p
 
 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
@@ -48,11 +50,13 @@ Your project will be recompiled every time you save a Sass file in `dist/.
 
 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