From: Joe Workman Date: Sat, 26 Oct 2019 14:51:11 +0000 (-0700) Subject: docs: localhost X-Git-Tag: v6.6.0~4^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b157c5239381f34e5e2ee72bee0bd6533ce1860f;p=thirdparty%2Ffoundation%2Ffoundation-sites.git docs: localhost --- diff --git a/docs/pages/starter-projects.md b/docs/pages/starter-projects.md index e88faa383..2bb5f42e3 100644 --- a/docs/pages/starter-projects.md +++ b/docs/pages/starter-projects.md @@ -67,7 +67,7 @@ npm install npm start ``` -Once compiled, you project is viewable at: //localhost:8000 +Once compiled, you project is viewable at: http://localhost:8000 The biggest difference between this and the basic template is the folder structure. In the ZURB Template, your project has a `src/` folder which contains your source files, and a separate `dist/` folder with your finished website. As you work on your project, Gulp continuously updates your `dist/` folder with new versions of files. To compile a production build, run `npm run build`. @@ -84,7 +84,7 @@ Here's an overview of what the ZURB Template can do: * **Asset Copying** Gulp will copy anything out of the `src/assets` folder as-is to the `assets` folder of your final project. Note that Sass files, JavaScript files, and images are *not* **part of this copying process, as they have their own steps.** - + * **Page Compilation** @@ -116,7 +116,7 @@ Here's an overview of what the ZURB Template can do: * **BrowserSync** - The template creates a [BrowserSync](https://www.browsersync.io/) server, which is at `//localhost:8000`. Load this URL to see your compiled templates. While the server is running, any time you save a file, any pages you have open will automatically refresh, allowing you to see changes in real-time as you work. + The template creates a [BrowserSync](https://www.browsersync.io/) server, which is at `http://localhost:8000`. Load this URL to see your compiled templates. While the server is running, any time you save a file, any pages you have open will automatically refresh, allowing you to see changes in real-time as you work. * **Style Guide Creation**