Skip to content

Commit faa6666

Browse files
committed
Merge branch 'release-1.1.2'
2 parents 5a63003 + 28fd501 commit faa6666

File tree

253 files changed

+52406
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

253 files changed

+52406
-0
lines changed
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
{
2+
"name": "foundation-sites",
3+
"version": "6.1.2",
4+
"main": [
5+
"scss/foundation.scss",
6+
"dist/foundation.js"
7+
],
8+
"ignore": [
9+
"config",
10+
"docs",
11+
"gulp",
12+
"lib",
13+
"test",
14+
"composer.json",
15+
"CONTRIBUTING.md",
16+
"gulpfile.js",
17+
"meteor-README.md",
18+
"package.js",
19+
"package.json",
20+
"sache.json",
21+
".editorconfig",
22+
".npm",
23+
".gitignore",
24+
".npmignore",
25+
".versions"
26+
],
27+
"dependencies": {
28+
"jquery": "~2.1.0",
29+
"what-input": "~1.1.2"
30+
},
31+
"homepage": "https://github.com/zurb/foundation-sites",
32+
"_release": "6.1.2",
33+
"_resolution": {
34+
"type": "version",
35+
"tag": "v6.1.2",
36+
"commit": "b7cedf57265b8c8ed9b746096cc2dd9dade9c55c"
37+
},
38+
"_source": "git://github.com/zurb/foundation-sites.git",
39+
"_target": "~6.1.0",
40+
"_originalSource": "foundation-sites"
41+
}
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
language: node_js
2+
node_js:
3+
- "0.12"
4+
install:
5+
- npm install -g bower
6+
- npm install
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
Copyright (c) 2013-2016 ZURB, inc.
2+
3+
MIT License
4+
5+
Permission is hereby granted, free of charge, to any person obtaining
6+
a copy of this software and associated documentation files (the
7+
"Software"), to deal in the Software without restriction, including
8+
without limitation the rights to use, copy, modify, merge, publish,
9+
distribute, sublicense, and/or sell copies of the Software, and to
10+
permit persons to whom the Software is furnished to do so, subject to
11+
the following conditions:
12+
13+
The above copyright notice and this permission notice shall be
14+
included in all copies or substantial portions of the Software.
15+
16+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
# [Foundation for Sites](http://foundation.zurb.com) (v6.1)
2+
3+
[![npm version](https://badge.fury.io/js/foundation-sites.svg)](https://badge.fury.io/js/foundation-sites) [![Bower version](https://badge.fury.io/bo/foundation-sites.svg)](https://badge.fury.io/bo/foundation-sites) [![Gem Version](https://badge.fury.io/rb/foundation-rails.svg)](https://badge.fury.io/rb/foundation-rails) [![devDependency Status](https://david-dm.org/zurb/foundation-sites/dev-status.svg)](https://david-dm.org/zurb/foundation-sites#info=devDependencies) [![Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/zurb/foundation-sites?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)
4+
5+
Foundation is the most advanced responsive front-end framework in the world. Quickly go from prototype to production, building sites or apps that work on any kind of device with Foundation. Includes layout constructs, like a fully customizable, responsive grid, commonly used JavaScript plugins, and full A11Y support.
6+
7+
## Requirements
8+
9+
Requires NodeJS to be installed on your machine. Works with version 0.12 and higher!
10+
11+
The Sass is compiled using libsass, which requires the GCC to be installed on your machine. Windows users can install it through [MinGW](http://www.mingw.org/), and Mac users can install it through the [Xcode Command-line Tools](http://osxdaily.com/2014/02/12/install-command-line-tools-mac-os-x/).
12+
13+
## Setup
14+
15+
To get going with Foundation you can:
16+
17+
18+
* [Install Yeti Launch](http://foundation.zurb.com/develop/yeti-launch.html): Seriously though, check it out!
19+
* [Install the CLI](https://www.npmjs.com/package/foundation-cli): `npm install -g foundation-cli`
20+
* [Download the latest release](http://foundation.zurb.com/sites/download.html)
21+
* [Install with Bower](http://bower.io): `bower install foundation-sites`
22+
* [Install with npm](http://npmjs.com): `npm install foundation-sites`
23+
* [Install with Atmosphere for Meteor](https://atmospherejs.com): `meteor add zurb:foundation-sites`
24+
* [Install with Composer](https://getcomposer.org/): `php composer.phar require zurb/foundation`
25+
26+
## Documentation
27+
28+
Foundation uses [Gulp](http://gulpjs.com/) and [SuperCollider](https://www.npmjs.com/package/supercollider) to generate its [documentation pages](http://foundation.zurb.com/sites/docs). Documentation can also be run from your local computer:
29+
30+
### View documentation locally
31+
32+
You'll want to clone the Foundation repo first and install all the dependencies. You can do this using the following commands:
33+
34+
```
35+
git clone git@github.com:zurb/foundation-sites.git
36+
cd foundation-sites
37+
npm install
38+
```
39+
40+
Then just run `npm start` and the documentation will be compiled. It will also launch an instance of [BrowserSync](http://www.browsersync.io/) and open a tab in your default browser.
41+
The file structure:
42+
43+
```
44+
foundation/
45+
├── dist/
46+
│ └── ...
47+
├── docs/
48+
│ └── ...
49+
```
50+
51+
Copyright (c) 2016 ZURB, inc.
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
@import './scss/foundation';
2+
3+
@include foundation-everything($flex: true);
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
@import './scss/foundation';
2+
3+
@include foundation-everything;
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
{
2+
"name": "foundation-sites",
3+
"version": "6.1.2",
4+
"main": [
5+
"scss/foundation.scss",
6+
"dist/foundation.js"
7+
],
8+
"ignore": [
9+
"config",
10+
"docs",
11+
"gulp",
12+
"lib",
13+
"test",
14+
"composer.json",
15+
"CONTRIBUTING.md",
16+
"gulpfile.js",
17+
"meteor-README.md",
18+
"package.js",
19+
"package.json",
20+
"sache.json",
21+
".editorconfig",
22+
".npm",
23+
".gitignore",
24+
".npmignore",
25+
".versions"
26+
],
27+
"dependencies": {
28+
"jquery": "~2.1.0",
29+
"what-input": "~1.1.2"
30+
}
31+
}

0 commit comments

Comments
 (0)