From b646833fbc07fe7cafc8f1a1e1a150fb0a382b40 Mon Sep 17 00:00:00 2001 From: Joe Workman Date: Mon, 11 Jul 2022 17:01:34 -0700 Subject: [PATCH] docs: remove foundation-cli from docs closes #12436 --- docs/pages/installation.md | 29 ++++++++++++++++++++++++----- docs/pages/starter-projects.md | 4 ++++ 2 files changed, 28 insertions(+), 5 deletions(-) diff --git a/docs/pages/installation.md b/docs/pages/installation.md index 3190828e0..ece90e177 100644 --- a/docs/pages/installation.md +++ b/docs/pages/installation.md @@ -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: + + + +### 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 +```
@@ -96,7 +115,7 @@ After you selected "Foundation for Sites", Foundation CLI will ask you which tem
-

ZURB template

+

Experienced template

Recommended for experienced (or curious) users
A more advanced project including Foundation and a build process with: diff --git a/docs/pages/starter-projects.md b/docs/pages/starter-projects.md index 91546edeb..714ccc0be 100644 --- a/docs/pages/starter-projects.md +++ b/docs/pages/starter-projects.md @@ -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 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 manually install the template with: ```bash -- 2.47.2