From 4ba50e367f60cd89e9d45b6ec527143edcf0e997 Mon Sep 17 00:00:00 2001 From: Cynthia Date: Sun, 17 Sep 2017 21:12:58 -0400 Subject: [PATCH] Nesting Assignment assignment 2 and boilerplate --- html5-boilerplate_v6.0.1.zip | Bin 0 -> 156299 bytes nesting/.editorconfig | 22 + nesting/.gitattributes | 28 + nesting/.github/CONTRIBUTING.md | 154 +++ nesting/.github/ISSUE_TEMPLATE.md | 74 ++ nesting/.github/PULL_REQUEST_TEMPLATE.md | 18 + nesting/.github/SUPPORT.md | 10 + nesting/.gitignore | 2 + nesting/.jscsrc | 68 ++ nesting/.jshintrc | 32 + nesting/.travis.yml | 32 + nesting/.travis/github_deploy_key.enc | Bin 0 -> 3248 bytes nesting/CHANGELOG.md | 304 ++++++ nesting/LICENSE.txt | 19 + nesting/README.md | 91 ++ nesting/dist/.editorconfig | 13 + nesting/dist/.gitattributes | 192 ++++ nesting/dist/.gitignore | 3 + nesting/dist/.htaccess | 984 ++++++++++++++++++ nesting/dist/404.html | 60 ++ nesting/dist/LICENSE.txt | 19 + nesting/dist/browserconfig.xml | 12 + nesting/dist/css/main.css | 291 ++++++ nesting/dist/css/normalize.css | 447 ++++++++ nesting/dist/doc/TOC.md | 35 + nesting/dist/doc/css.md | 164 +++ nesting/dist/doc/extend.md | 693 ++++++++++++ nesting/dist/doc/faq.md | 47 + nesting/dist/doc/html.md | 250 +++++ nesting/dist/doc/js.md | 36 + nesting/dist/doc/misc.md | 158 +++ nesting/dist/doc/usage.md | 130 +++ nesting/dist/favicon.ico | Bin 0 -> 766 bytes nesting/dist/humans.txt | 15 + nesting/dist/icon.png | Bin 0 -> 4029 bytes nesting/dist/img/.gitignore | 0 nesting/dist/index.html | 37 + nesting/dist/js/main.js | 0 nesting/dist/js/plugins.js | 24 + nesting/dist/js/vendor/jquery-3.2.1.min.js | 4 + nesting/dist/js/vendor/modernizr-3.5.0.min.js | 3 + nesting/dist/robots.txt | 5 + nesting/dist/site.webmanifest | 8 + nesting/dist/tile-wide.png | Bin 0 -> 1854 bytes nesting/dist/tile.png | Bin 0 -> 3482 bytes nesting/gulpfile.babel.js | 196 ++++ nesting/index.html | 79 ++ nesting/modernizr-config.json | 30 + nesting/nesting.css | 101 ++ nesting/package.json | 68 ++ nesting/src/.editorconfig | 13 + nesting/src/.gitattributes | 192 ++++ nesting/src/.gitignore | 3 + nesting/src/404.html | 60 ++ nesting/src/browserconfig.xml | 12 + nesting/src/css/main.css | 281 +++++ nesting/src/doc/TOC.md | 35 + nesting/src/doc/css.md | 164 +++ nesting/src/doc/extend.md | 693 ++++++++++++ nesting/src/doc/faq.md | 47 + nesting/src/doc/html.md | 250 +++++ nesting/src/doc/js.md | 36 + nesting/src/doc/misc.md | 158 +++ nesting/src/doc/usage.md | 130 +++ nesting/src/favicon.ico | Bin 0 -> 766 bytes nesting/src/humans.txt | 15 + nesting/src/icon.png | Bin 0 -> 4029 bytes nesting/src/img/.gitignore | 0 nesting/src/index.html | 37 + nesting/src/js/main.js | 0 nesting/src/js/plugins.js | 24 + nesting/src/robots.txt | 5 + nesting/src/site.webmanifest | 8 + nesting/src/tile-wide.png | Bin 0 -> 1854 bytes nesting/src/tile.png | Bin 0 -> 3482 bytes nesting/test/file_content.js | 85 ++ nesting/test/file_existence.js | 135 +++ 77 files changed, 7341 insertions(+) create mode 100644 html5-boilerplate_v6.0.1.zip create mode 100644 nesting/.editorconfig create mode 100644 nesting/.gitattributes create mode 100644 nesting/.github/CONTRIBUTING.md create mode 100644 nesting/.github/ISSUE_TEMPLATE.md create mode 100644 nesting/.github/PULL_REQUEST_TEMPLATE.md create mode 100644 nesting/.github/SUPPORT.md create mode 100644 nesting/.gitignore create mode 100644 nesting/.jscsrc create mode 100644 nesting/.jshintrc create mode 100644 nesting/.travis.yml create mode 100644 nesting/.travis/github_deploy_key.enc create mode 100644 nesting/CHANGELOG.md create mode 100644 nesting/LICENSE.txt create mode 100644 nesting/README.md create mode 100644 nesting/dist/.editorconfig create mode 100644 nesting/dist/.gitattributes create mode 100644 nesting/dist/.gitignore create mode 100644 nesting/dist/.htaccess create mode 100644 nesting/dist/404.html create mode 100644 nesting/dist/LICENSE.txt create mode 100644 nesting/dist/browserconfig.xml create mode 100644 nesting/dist/css/main.css create mode 100644 nesting/dist/css/normalize.css create mode 100644 nesting/dist/doc/TOC.md create mode 100644 nesting/dist/doc/css.md create mode 100644 nesting/dist/doc/extend.md create mode 100644 nesting/dist/doc/faq.md create mode 100644 nesting/dist/doc/html.md create mode 100644 nesting/dist/doc/js.md create mode 100644 nesting/dist/doc/misc.md create mode 100644 nesting/dist/doc/usage.md create mode 100644 nesting/dist/favicon.ico create mode 100644 nesting/dist/humans.txt create mode 100644 nesting/dist/icon.png create mode 100644 nesting/dist/img/.gitignore create mode 100644 nesting/dist/index.html create mode 100644 nesting/dist/js/main.js create mode 100644 nesting/dist/js/plugins.js create mode 100644 nesting/dist/js/vendor/jquery-3.2.1.min.js create mode 100644 nesting/dist/js/vendor/modernizr-3.5.0.min.js create mode 100644 nesting/dist/robots.txt create mode 100644 nesting/dist/site.webmanifest create mode 100644 nesting/dist/tile-wide.png create mode 100644 nesting/dist/tile.png create mode 100644 nesting/gulpfile.babel.js create mode 100644 nesting/index.html create mode 100644 nesting/modernizr-config.json create mode 100644 nesting/nesting.css create mode 100644 nesting/package.json create mode 100644 nesting/src/.editorconfig create mode 100644 nesting/src/.gitattributes create mode 100644 nesting/src/.gitignore create mode 100644 nesting/src/404.html create mode 100644 nesting/src/browserconfig.xml create mode 100644 nesting/src/css/main.css create mode 100644 nesting/src/doc/TOC.md create mode 100644 nesting/src/doc/css.md create mode 100644 nesting/src/doc/extend.md create mode 100644 nesting/src/doc/faq.md create mode 100644 nesting/src/doc/html.md create mode 100644 nesting/src/doc/js.md create mode 100644 nesting/src/doc/misc.md create mode 100644 nesting/src/doc/usage.md create mode 100644 nesting/src/favicon.ico create mode 100644 nesting/src/humans.txt create mode 100644 nesting/src/icon.png create mode 100644 nesting/src/img/.gitignore create mode 100644 nesting/src/index.html create mode 100644 nesting/src/js/main.js create mode 100644 nesting/src/js/plugins.js create mode 100644 nesting/src/robots.txt create mode 100644 nesting/src/site.webmanifest create mode 100644 nesting/src/tile-wide.png create mode 100644 nesting/src/tile.png create mode 100644 nesting/test/file_content.js create mode 100644 nesting/test/file_existence.js diff --git a/html5-boilerplate_v6.0.1.zip b/html5-boilerplate_v6.0.1.zip new file mode 100644 index 0000000000000000000000000000000000000000..c75e88e7fc08a4e9d9bb3d20f00b564ee98e91f4 GIT binary patch literal 156299 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 n*KIwe1mzBdEa6B3ErH&TNLl<6EWaG5hcAC +## Bug reports + +A bug is a _demonstrable problem_ that is caused by the code in the repository. +Good bug reports are extremely helpful - thank you! + +Guidelines for bug reports: + +1. **Use the GitHub issue search** — check if the issue has already been + reported. + +2. **Check if the issue has been fixed** — try to reproduce it using the + latest `master` or development branch in the repository. + +3. **Isolate the problem** — ideally create a [reduced test + case](https://css-tricks.com/reduced-test-cases/) and a live example. + +A good bug report shouldn't leave others needing to chase you up for more +information. Please try to be as detailed as possible in your report. What is +your environment? What steps will reproduce the issue? What browser(s) and OS +experience the problem? What would you expect to be the outcome? All these +details will help people to fix any potential bugs. + +Example: + +> Short and descriptive example bug report title +> +> A summary of the issue and the browser/OS environment in which it occurs. If +> suitable, include the steps required to reproduce the bug. +> +> 1. This is the first step +> 2. This is the second step +> 3. Further steps, etc. +> +> `` - a link to the reduced test case +> +> Any other information you want to share that is relevant to the issue being +> reported. This might include the lines of code that you have identified as +> causing the bug, and potential solutions (and your opinions on their +> merits). + + + +## Feature requests + +Feature requests are welcome. But take a moment to find out whether your idea +fits with the scope and aims of the project. It's up to *you* to make a strong +case to convince the project's developers of the merits of this feature. Please +provide as much detail and context as possible. + + + +## Pull requests + +Good pull requests - patches, improvements, new features - are a fantastic +help. They should remain focused in scope and avoid containing unrelated +commits. + +**Please ask first** before embarking on any significant pull request (e.g. +implementing features, refactoring code, porting to a different language), +otherwise you risk spending a lot of time working on something that the +project's developers might not want to merge into the project. + +Please adhere to the coding conventions used throughout a project (indentation, +accurate comments, etc.) and any other requirements (such as test coverage). + +Adhering to the following process is the best way to get your work +included in the project: + +1. [Fork](https://help.github.com/articles/fork-a-repo/) the project, clone your + fork, and configure the remotes: + + ```bash + # Clone your fork of the repo into the current directory + git clone https://github.com//html5-boilerplate.git + # Navigate to the newly cloned directory + cd html5-boilerplate + # Assign the original repo to a remote called "upstream" + git remote add upstream https://github.com/h5bp/html5-boilerplate.git + ``` + +2. If you cloned a while ago, get the latest changes from upstream: + + ```bash + git checkout master + git pull upstream master + ``` + +3. Create a new topic branch (off the main project development branch) to + contain your feature, change, or fix: + + ```bash + git checkout -b + ``` + +4. Commit your changes in logical chunks. Please adhere to these [git commit + message guidelines](http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html) + or your code is unlikely be merged into the main project. Use Git's + [interactive rebase](https://help.github.com/articles/about-git-rebase/) + feature to tidy up your commits before making them public. + +5. Locally merge (or rebase) the upstream development branch into your topic branch: + + ```bash + git pull [--rebase] upstream master + ``` + +6. Push your topic branch up to your fork: + + ```bash + git push origin + ``` + +7. [Open a Pull Request](https://help.github.com/articles/using-pull-requests/) + with a clear title and description. + +**IMPORTANT**: By submitting a patch, you agree to allow the project +owners to license your work under the terms of the [MIT License](LICENSE.txt). diff --git a/nesting/.github/ISSUE_TEMPLATE.md b/nesting/.github/ISSUE_TEMPLATE.md new file mode 100644 index 0000000..2f02c0a --- /dev/null +++ b/nesting/.github/ISSUE_TEMPLATE.md @@ -0,0 +1,74 @@ +**I'm submitting a ...** + +- [ ] bug report +- [ ] feature request +- [ ] other (Please do not submit support requests here (below)) + +## Notes: + +* Please **do not** use the issue tracker for personal support requests (use + [Stack Overflow](https://stackoverflow.com/questions/tagged/html5boilerplate)). + +* Please **do not** derail or troll issues. Keep the discussion on topic and + respect the opinions of others. + +* Please **do not** open issues or pull requests regarding the code in + [`.htaccess`](https://github.com/h5bp/server-configs-apache), + [`jQuery`](https://github.com/jquery/jquery/), + [`Modernizr`](https://github.com/Modernizr/Modernizr) or + [`Normalize.css`](https://github.com/necolas/normalize.css) (open them in + their respective repositories). + +## Bug reports + +A bug is a _demonstrable problem_ that is caused by the code in the repository. +Good bug reports are extremely helpful - thank you! + +Guidelines for bug reports: + +1. **Use the GitHub issue search** — check if the issue has already been + reported. + + We have a long history of sometimes _very_ detailed discussion of every line of code + in the project. We want discussion, so it might still warrant an issue. It + just helps to get the (sometimes extensive) context. + +2. **Check if the issue has been fixed** — try to reproduce it using the + latest `master` or development branch in the repository. + +3. **Isolate the problem** — ideally create a [reduced test + case](https://css-tricks.com/reduced-test-cases/) and a live example. + +A good bug report shouldn't leave others needing to chase you up for more +information. Please try to be as detailed as possible in your report. What is +your environment? What steps will reproduce the issue? What browser(s) and OS +experience the problem? What would you expect to be the outcome? All these +details will help people to fix any potential bugs. + +Example: + +> Short and descriptive example bug report title +> +> A summary of the issue and the browser/OS environment in which it occurs. If +> suitable, include the steps required to reproduce the bug. +> +> 1. This is the first step +> 2. This is the second step +> 3. Further steps, etc. +> +> `` - a link to the reduced test case +> +> Any other information you want to share that is relevant to the issue being +> reported. This might include the lines of code that you have identified as +> causing the bug, and potential solutions (and your opinions on their +> merits). + + +## Feature requests + +Feature requests are welcome. But take a moment to find out whether your idea +fits with the scope and aims of the project. It's up to *you* to make a strong +case to convince the project's developers of the merits of this feature. Please +provide as much detail and context as possible. + + diff --git a/nesting/.github/PULL_REQUEST_TEMPLATE.md b/nesting/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 0000000..78581fd --- /dev/null +++ b/nesting/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,18 @@ +## Types of changes + +- [ ] Bug fix (non-breaking change which fixes an issue) +- [ ] New feature (non-breaking change which adds functionality) +- [ ] Breaking change (fix or feature that would cause existing functionality to change) + +## Checklist: + + +- [ ] My code follows the code style of this project. +- [ ] My change requires a change to the documentation. +- [ ] I have updated the documentation accordingly. +- [ ] I have read the **CONTRIBUTING** document. +- [ ] I have added tests to cover my changes. +- [ ] All new and existing tests passed. + + + diff --git a/nesting/.github/SUPPORT.md b/nesting/.github/SUPPORT.md new file mode 100644 index 0000000..2fc0cf7 --- /dev/null +++ b/nesting/.github/SUPPORT.md @@ -0,0 +1,10 @@ +# Support + +For personal support requests with HTML5 Boilerplate please use Stack Overflow +([`html5boilerplate`](https://stackoverflow.com/questions/tagged/html5boilerplate) tag). + +Please check the respective repository/website for support regarding the code in + [`.htaccess`](https://github.com/h5bp/server-configs-apache), + [`jQuery`](https://jquery.org/support/), + [`Modernizr`](https://modernizr.com/) or + [`Normalize.css`](https://github.com/necolas/normalize.css). diff --git a/nesting/.gitignore b/nesting/.gitignore new file mode 100644 index 0000000..9eb74bc --- /dev/null +++ b/nesting/.gitignore @@ -0,0 +1,2 @@ +archive +node_modules diff --git a/nesting/.jscsrc b/nesting/.jscsrc new file mode 100644 index 0000000..a83f173 --- /dev/null +++ b/nesting/.jscsrc @@ -0,0 +1,68 @@ +{ + "disallowEmptyBlocks": true, + "disallowKeywords": [ + "with" + ], + "disallowMixedSpacesAndTabs": true, + "disallowMultipleLineStrings": true, + "disallowMultipleVarDecl": true, + "disallowSpaceAfterPrefixUnaryOperators": [ + "!", + "+", + "++", + "-", + "--", + "~" + ], + "disallowSpaceBeforeBinaryOperators": [ + "," + ], + "disallowSpaceBeforePostfixUnaryOperators": true, + "disallowSpacesInNamedFunctionExpression": { + "beforeOpeningRoundBrace": true + }, + "disallowSpacesInsideArrayBrackets": true, + "disallowSpacesInsideParentheses": true, + "disallowTrailingComma": true, + "disallowTrailingWhitespace": true, + "requireCamelCaseOrUpperCaseIdentifiers": true, + "requireCapitalizedConstructors": true, + "requireCommaBeforeLineBreak": true, + "requireCurlyBraces": true, + "requireDotNotation": true, + "requireLineFeedAtFileEnd": true, + "requireParenthesesAroundIIFE": true, + "requireSpaceAfterBinaryOperators": true, + "requireSpaceAfterKeywords": [ + "catch", + "do", + "else", + "for", + "if", + "return", + "switch", + "try", + "while" + ], + "requireSpaceAfterLineComment": true, + "requireSpaceBeforeBinaryOperators": true, + "requireSpaceBeforeBlockStatements": true, + "requireSpacesInAnonymousFunctionExpression": { + "beforeOpeningCurlyBrace": true + }, + "requireSpacesInConditionalExpression": true, + "requireSpacesInFunctionDeclaration": { + "beforeOpeningCurlyBrace": true + }, + "requireSpacesInFunctionExpression": { + "beforeOpeningCurlyBrace": true + }, + "requireSpacesInNamedFunctionExpression": { + "beforeOpeningCurlyBrace": true + }, + "requireSpacesInsideObjectBrackets": "allButNested", + "validateIndentation": 4, + "validateLineBreaks": "LF", + "validateParameterSeparator": ", ", + "validateQuoteMarks": "'" +} diff --git a/nesting/.jshintrc b/nesting/.jshintrc new file mode 100644 index 0000000..e1eb05b --- /dev/null +++ b/nesting/.jshintrc @@ -0,0 +1,32 @@ +{ + + // Enforcing options + // http://jshint.com/docs/options/#enforcing-options + + "bitwise": true, + "eqeqeq": true, + "forin": true, + "latedef": true, + "noarg": true, + "nonbsp": true, + "nonew": true, + "undef": true, + "unused": true, + + // - - - - - - - - - - - - - - - - - - - - - - - - - - - + + // Relaxing options + // http://jshint.com/docs/options/#relaxing-options + + "esnext": true, + + // - - - - - - - - - - - - - - - - - - - - - - - - - - - + + // Environments + // http://jshint.com/docs/options/#environments + + "browser": true, + "jquery": true, + "node": true + +} diff --git a/nesting/.travis.yml b/nesting/.travis.yml new file mode 100644 index 0000000..f231cf2 --- /dev/null +++ b/nesting/.travis.yml @@ -0,0 +1,32 @@ +# For more information about the configurations used +# in this file, please see the Travis CI documentation: +# https://docs.travis-ci.com + +after_success: + - | + + # Automatically update the content from the `dist/` directory + + $(npm bin)/travis-after-all \ + && $(npm bin)/set-up-ssh -k "$encrypted_7289798db853_key" \ + -iv "$encrypted_7289798db853_iv" \ + --path-encrypted-key ".travis/github_deploy_key.enc" \ + && $(npm bin)/commit-changes --branch "master" \ + --commands "npm run build" \ + --commit-message "Update content from the \`dist\` directory [skip ci]" + +env: + global: + - secure: "uZ0R71TG9AR+kbfM9rwa8PPNr3f9E0C4OuA0s6g0Gq15bBcpVxPvus0/eJdW+O2NSzZE1GbzS//hBiP+chK/8X4DyNIRutlGk5RYdnTTFEaZo9jp0BvlvprUYlGgpprR/531zQ9ahkc0STwVvzurGzlcF4NNMiISAJJ1IdQZABc=" + +git: + depth: 10 + +language: node_js + +node_js: + - 4 + - 6 + - 7 + +sudo: false diff --git a/nesting/.travis/github_deploy_key.enc b/nesting/.travis/github_deploy_key.enc new file mode 100644 index 0000000000000000000000000000000000000000..5a3734c03ebae3c2de10990a0a0901a1188e208e GIT binary patch literal 3248 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 literal 0 HcmV?d00001 diff --git a/nesting/CHANGELOG.md b/nesting/CHANGELOG.md new file mode 100644 index 0000000..1a15c0b --- /dev/null +++ b/nesting/CHANGELOG.md @@ -0,0 +1,304 @@ +### 6.0.1 (August 20, 2017) + +* Reverts .visuallyhidden (see [#1985](https://github.com/h5bp/html5-boilerplate/issues/1985)) + + +### 6.0.0 (August 17, 2017) + +* Fix Bug: .visuallyhidden on macOS VO fixes #1985 ([#1989](https://github.com/h5bp/html5-boilerplate/pull/1989)) +* Adds web app manifest file ([#1963](https://github.com/h5bp/html5-boilerplate/pull/1963)) +* Update to jQuery 3.2.1 ([#1942](https://github.com/h5bp/html5-boilerplate/pull/1942)) +* Improve ::selection documentation which became confusing after c7057be ([#1955](https://github.com/h5bp/html5-boilerplate/pull/1955)) +* refactor(html): update browsehappy to https instead of http ([#1952](https://github.com/h5bp/html5-boilerplate/pull/1952)) +* Fix links to CONTRIBUTING.md ([#1951](https://github.com/h5bp/html5-boilerplate/pull/1951)) +* Adds .github folder and contents Fixes ([#1948](https://github.com/h5bp/html5-boilerplate/pull/1948)) +* Modernizr 3, modernizr.config and ([#1940](https://github.com/h5bp/html5-boilerplate/pull/1940)) +* Housekeeping by @coliff (#1968 #1969 #1965 #1964 #1958 #1957 #1956) +* Update .gitattributes for Web Projects ([#1935](https://github.com/h5bp/html5-boilerplate/pull/1935)) +* Add the link for useful .gitignore templates ([#1936](https://github.com/h5bp/html5-boilerplate/pull/1936)) +* Node plumbing updated ([#1925](https://github.com/h5bp/html5-boilerplate/pull/1925)) ([#1928](https://github.com/h5bp/html5-boilerplate/pull/1928)) ([#1931](https://github.com/h5bp/html5-boilerplate/pull/1931)) +* Use es2015 syntax in mocha tests ([#1788](https://github.com/h5bp/html5-boilerplate/pull/1788)) +* Scope :first-letter selector for print styles ([#1904](https://github.com/h5bp/html5-boilerplate/pull/1904)) +* Add SRI Hash for jQuery ([#1904](https://github.com/h5bp/html5-boilerplate/pull/1904)) +* Update .jshintrc ([#1903](https://github.com/h5bp/html5-boilerplate/pull/1903)) +* Improve accessibility with visuallyhidden content ([#1900](https://github.com/h5bp/html5-boilerplate/pull/1900)) +* Tell users that IE 8 and 9 are outdated + ([#1747](https://github.com/h5bp/html5-boilerplate/issues/1747)). +* Removed IE8 Support (upgrades jQuery and normalize.css to latest) + ([#1524](https://github.com/h5bp/html5-boilerplate/issues/1524)). +* Fix print styles for Internet Explorer 11 + ([#1799](https://github.com/h5bp/html5-boilerplate/issues/1799)). +* Update doc links to https + ([#1889](https://github.com/h5bp/html5-boilerplate/issues/1889)). +* Delete crossdomain.xml + ([#1881](https://github.com/h5bp/html5-boilerplate/issues/1881)). +* Adds pre-wrap to PRE + ([#1742](https://github.com/h5bp/html5-boilerplate/issues/1742)). +* Change license format to SPDX format + ([#1814](https://github.com/h5bp/html5-boilerplate/pull/1814)). +* Simplify the Google Analytics snippet using `async` & `defer` ([#1660](https://github.com/h5bp/html5-boilerplate/pull/1660#issuecomment-89285678)). + +### 5.3.0 (January 12, 2016) + +* Update jQuery to `v1.12.0`. +* Fetch `jQuery` from jQuery's CDN instead of Google's + ([#1737](https://github.com/h5bp/html5-boilerplate/issues/1737), + [#1739](https://github.com/h5bp/html5-boilerplate/issues/1739)). +* Change print color for `:first-letter` and `:first-line` + pseudo-elements + ([#1715](https://github.com/h5bp/html5-boilerplate/pull/1715)). + +### 5.2.0 (May 1, 2015) + +* Update jQuery to `v1.11.3` + ([#1699](https://github.com/h5bp/html5-boilerplate/issues/1699)). +* Deprecate protocol-relative URLs + ([#1694](https://github.com/h5bp/html5-boilerplate/issues/1694)). +* Update high resolution media query + ([#1474](https://github.com/h5bp/html5-boilerplate/issues/1474)). +* Update Apache Server Configs to `v2.14.0`. + +### 5.1.0 (April 1, 2015) + +* Update Normalize.css to `v3.0.3`. +* Use `https://` in the Google Universal Analytics snippet + ([eee759b](https://github.com/h5bp/html5-boilerplate/commit/eee759bfe175e850bbc8e4ad0682ec4fe4bd05d6)). +* Remove the `visibility: hidden` declaration from `.hidden` + ([#1663](https://github.com/h5bp/html5-boilerplate/issues/1663)). +* Use ``
+ instead of `` + ([#1656](https://github.com/h5bp/html5-boilerplate/issues/1656)). +* Update Apache Server Configs to `v2.13.0`. + +### 5.0.0 (February 1, 2015) + +* Update to jQuery 1.11.2. +* Update Apache Server Configs to v2.11.0. +* Rename Apple touch icon to `apple-touch-icon.png` and add + `` in `index.html` + ([#1622](https://github.com/h5bp/html5-boilerplate/issues/1622)). +* Add vertical centering for `iframe` + ([#1613](https://github.com/h5bp/html5-boilerplate/issues/1613)). +* Change the outdated browser prompt classname to `browserupgrade` + ([#1608](https://github.com/h5bp/html5-boilerplate/issues/1608)). +* Update to Normalize.css 3.0.2. + ([#1050](https://github.com/h5bp/html5-boilerplate/issues/1050)). +* Update `apple-touch-icon-precomposed.png` and the _"Apple touch + icons"_ related documentation + ([#1599](https://github.com/h5bp/html5-boilerplate/pull/1599)). +* Add pseudo-elements to universal selector in print media query + ([#1585](https://github.com/h5bp/html5-boilerplate/pull/1585)). +* Update to Modernizr 2.8.3. +* Remove need to readjust margins in `404.html` + ([#1567](https://github.com/h5bp/html5-boilerplate/pull/1567)). +* Add `/.editorconfig` file + ([#1561](https://github.com/h5bp/html5-boilerplate/issues/1561), + [#1564](https://github.com/h5bp/html5-boilerplate/issues/1564)). +* Add `auto` to the Google Universal Analytics tracker create method + ([#1562](https://github.com/h5bp/html5-boilerplate/issues/1562)). +* Add `timeline` and `timelineEnd` to the list of `console` methods + ([#1559](https://github.com/h5bp/html5-boilerplate/issues/1559)). +* Add `lang=""` to `` + ([#1542](https://github.com/h5bp/html5-boilerplate/issues/1542)). +* Use `` instead of `` + ([#1522](https://github.com/h5bp/html5-boilerplate/issues/1522)). +* Add `/browserconfig.xml` file and tile images + ([#1481](https://github.com/h5bp/html5-boilerplate/issues/1481)). +* Add `Disallow:` to `robots.txt` + ([#1487](https://github.com/h5bp/html5-boilerplate/issues/1487)). +* Remove default foreground color from form elements + ([#1390](https://github.com/h5bp/html5-boilerplate/issues/1390)). +* Remove default margin from print styles + ([#1477](https://github.com/h5bp/html5-boilerplate/issues/1477)). +* Remove image replacement helper class `.ir` + ([#1472](https://github.com/h5bp/html5-boilerplate/issues/1472), + [#1475](https://github.com/h5bp/html5-boilerplate/issues/1475)). +* Add vertical centering for `svg` + ([#1453](https://github.com/h5bp/html5-boilerplate/issues/1453)). +* Redesign 404 page + ([#1443](https://github.com/h5bp/html5-boilerplate/pull/1443)). +* Remove IE 6/7 hacks from `main.css` + ([#1050](https://github.com/h5bp/html5-boilerplate/issues/1050)). +* Remove IE conditional classes + ([#1187](https://github.com/h5bp/html5-boilerplate/issues/1187), + [#1290](https://github.com/h5bp/html5-boilerplate/issues/1290)). + +### 4.3.0 (September 10, 2013) + +* Use one `apple-touch-icon` instead of six + ([#1367](https://github.com/h5bp/html5-boilerplate/issues/1367)). +* Move font-related declarations from `body` to `html` + ([#1411](https://github.com/h5bp/html5-boilerplate/issues/1411)). +* Update to Apache Server Configs 1.1.0. +* Add `initial-scale=1` to the viewport `meta` + ([#1398](https://github.com/h5bp/html5-boilerplate/pull/1398)). +* Vertical centering for audio-, canvas- and video-tags + ([#1326](https://github.com/h5bp/html5-boilerplate/issues/1326)). +* Remove Google Chrome Frame related code + ([#1379](https://github.com/h5bp/html5-boilerplate/pull/1379), + [#1396](https://github.com/h5bp/html5-boilerplate/pull/1396)). +* Update to Google Universal Analytics + ([#1347](https://github.com/h5bp/html5-boilerplate/issues/1347)). +* Update to jQuery 1.10.2. +* Update to Normalize.css 1.1.3. + +### 4.2.0 (April 8, 2013) + +* Remove Google Analytics protocol check + ([#1319](https://github.com/h5bp/html5-boilerplate/pull/1319)). +* Update to Normalize.css 1.1.1. +* Update Apache configurations to include the latest changes in the + canonical [`.htaccess`](https://github.com/h5bp/server-configs-apache) + file. +* Use a protocol relative URL for the 404 template script. +* Update to jQuery 1.9.1. + +### 4.1.0 (January 21, 2013) + +* Update to Normalize.css 1.1.0. +* Update to jQuery 1.9.0. + +### 4.0.3 (January 12, 2013) + +* Use 32x32 favicon.ico + ([#1286](https://github.com/h5bp/html5-boilerplate/pull/1286)). +* Remove named function expression in plugins.js + ([#1280](https://github.com/h5bp/html5-boilerplate/pull/1280)). +* Adjust CSS image-replacement code + ([#1239](https://github.com/h5bp/html5-boilerplate/issues/1239)). +* Update HiDPI example media query + ([#1127](https://github.com/h5bp/html5-boilerplate/issues/1127)). + +### 4.0.2 (December 9, 2012) + +* Update placeholder icons. +* Update to Normalize.css 1.0.2. +* Update to jQuery 1.8.3. + +### 4.0.1 (October 20, 2012) + +* Further improvements to `console` method stubbing + ([#1206](https://github.com/h5bp/html5-boilerplate/issues/1206), + [#1229](https://github.com/h5bp/html5-boilerplate/pull/1229)). +* Update to jQuery 1.8.2. +* Update to Modernizr 2.6.2. +* Minor additions to the documentation. + +### 4.0.0 (August 28, 2012) + +* Improve the Apache compression configuration + ([#1012](https://github.com/h5bp/html5-boilerplate/issues/1012), + [#1173](https://github.com/h5bp/html5-boilerplate/issues/1173)). +* Add a HiDPI example media query + ([#1127](https://github.com/h5bp/html5-boilerplate/issues/1127)). +* Add bundled docs + ([#1154](https://github.com/h5bp/html5-boilerplate/issues/1154)). +* Add MIT license + ([#1139](https://github.com/h5bp/html5-boilerplate/issues/1139)). +* Update to Normalize.css 1.0.1. +* Separate Normalize.css from the rest of the CSS + ([#1160](https://github.com/h5bp/html5-boilerplate/issues/1160)). +* Improve `console.log` protection + ([#1107](https://github.com/h5bp/html5-boilerplate/issues/1107)). +* Replace hot pink text selection color with a neutral color. +* Change image replacement technique + ([#1149](https://github.com/h5bp/html5-boilerplate/issues/1149)). +* Code format and consistency changes + ([#1112](https://github.com/h5bp/html5-boilerplate/issues/1112)). +* Rename CSS file and rename JS files and subdirectories. +* Update to jQuery 1.8 + ([#1161](https://github.com/h5bp/html5-boilerplate/issues/1161)). +* Update to Modernizr 2.6.1 + ([#1086](https://github.com/h5bp/html5-boilerplate/issues/1086)). +* Remove uncompressed jQuery + ([#1153](https://github.com/h5bp/html5-boilerplate/issues/1153)). +* Remove superfluous inline comments + ([#1150](https://github.com/h5bp/html5-boilerplate/issues/1150)). + +### 3.0.2 (February 19, 2012) + +* Update to Modernizr 2.5.3. + +### 3.0.1 (February 08, 2012). + +* Update to Modernizr 2.5.2 (includes html5shiv 3.3). + +### 3.0.0 (February 06, 2012) + +* Improvements to `.htaccess`. +* Improve 404 design. +* Simplify JS folder structure. +* Change `html` IE class names changed to target ranges rather than + specific versions of IE. +* Update CSS to include latest normalize.css changes and better + typographic defaults + ([#825](https://github.com/h5bp/html5-boilerplate/issues/825)). +* Update to Modernizr 2.5 (includes yepnope 1.5 and html5shiv 3.2). +* Update to jQuery 1.7.1. +* Revert to async snippet for the Google Analytics script. +* Remove the ant build script + ([#826](https://github.com/h5bp/html5-boilerplate/issues/826)). +* Remove Respond.js + ([#816](https://github.com/h5bp/html5-boilerplate/issues/816)). +* Remove the `demo/` directory + ([#808](https://github.com/h5bp/html5-boilerplate/issues/808)). +* Remove the `test/` directory + ([#808](https://github.com/h5bp/html5-boilerplate/issues/808)). +* Remove Google Chrome Frame script for IE6 users; replace with links + to Chrome Frame and options for alternative browsers. +* Remove `initial-scale=1` from the viewport `meta` + ([#824](https://github.com/h5bp/html5-boilerplate/issues/824)). +* Remove `defer` from all scripts to avoid legacy IE bugs. +* Remove explicit Site Speed tracking for Google Analytics. It's now + enabled by default. + +### 2.0.0 (August 10, 2011) + +* Change starting CSS to be based on normalize.css instead of reset.css + ([#500](https://github.com/h5bp/html5-boilerplate/issues/500)). +* Add Respond.js media query polyfill. +* Add Google Chrome Frame script prompt for IE6 users. +* Simplify the `html` conditional comments for modern browsers and add + an `oldie` class. +* Update clearfix to use "micro clearfix". +* Add placeholder CSS MQs for mobile-first approach. +* Add `textarea { resize: vertical; }` to only allow vertical resizing. +* Add `img { max-width: 100%; }` to the print styles; prevents images + being truncated. +* Add Site Speed tracking for Google Analytics. +* Update to jQuery 1.6.2 (and use minified by default). +* Update to Modernizr 2.0 Complete, Production minified (includes + yepnope, html5shiv, and Respond.js). +* Use `Modernizr.load()` to load the Google Analytics script. +* Much faster build process. +* Add build script options for CSSLint, JSLint, JSHint tools. +* Build script now compresses all images in subfolders. +* Build script now versions files by SHA hash. +* Many `.htaccess` improvements including: disable directory browsing, + improved support for all versions of Apache, more robust and extensive + HTTP compression rules. +* Remove `handheld.css` as it has very poor device support. +* Remove touch-icon `link` elements from the HTML and include improved + touch-icon support. +* Remove the cache-busting query paramaters from files references in + the HTML. +* Remove IE6 PNGFix. + +### 1.0.0 (March 21, 2011) + +* Rewrite build script to make it more customizable and flexible. +* Add a humans.txt. +* Numerous `.htaccess` improvements (including inline documentation). +* Move the alternative server configurations to the H5BP server configs + repo. +* Use a protocol-relative url to reference jQuery and prevent mixed + content warnings. +* Optimize the Google Analytics snippet. +* Use Eric Meyer's recent CSS reset update and the HTML5 Doctor reset. +* More robust `sub`/`sup` CSS styles. +* Add keyboard `.focusable` helper class that extends `.visuallyhidden`. +* Print styles no longer print hash or JavaScript links. +* Add a print reset for IE's proprietary filters. +* Remove IE9-specific conditional class on the `html` element. +* Remove margins from lists within `nav` elements. +* Remove YUI profiling. diff --git a/nesting/LICENSE.txt b/nesting/LICENSE.txt new file mode 100644 index 0000000..294e91d --- /dev/null +++ b/nesting/LICENSE.txt @@ -0,0 +1,19 @@ +Copyright (c) HTML5 Boilerplate + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is furnished to do +so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/nesting/README.md b/nesting/README.md new file mode 100644 index 0000000..345b468 --- /dev/null +++ b/nesting/README.md @@ -0,0 +1,91 @@ +# [HTML5 Boilerplate](https://html5boilerplate.com/) + +[![Build Status](https://travis-ci.org/h5bp/html5-boilerplate.svg)](https://travis-ci.org/h5bp/html5-boilerplate) +[![devDependency Status](https://david-dm.org/h5bp/html5-boilerplate/dev-status.svg)](https://david-dm.org/h5bp/html5-boilerplate#info=devDependencies) + +HTML5 Boilerplate is a professional front-end template for building +fast, robust, and adaptable web apps or sites. + +This project is the product of years of iterative development and +community knowledge. It does not impose a specific development +philosophy or framework, so you're free to architect your code in the +way that you want. + +* Homepage: [https://html5boilerplate.com/](https://html5boilerplate.com/) +* Source: [https://github.com/h5bp/html5-boilerplate](https://github.com/h5bp/html5-boilerplate) +* Twitter: [@h5bp](https://twitter.com/h5bp) + + +## Quick start + +Choose one of the following options: + +1. Download the latest stable release from + [html5boilerplate.com](https://html5boilerplate.com/). +2. Clone the git repo — `git clone + https://github.com/h5bp/html5-boilerplate.git` - and checkout the + [tagged release](https://github.com/h5bp/html5-boilerplate/releases) + you'd like to use. + + +## Features + +* HTML5 ready. Use the new elements with confidence. +* Designed with progressive enhancement in mind. +* Includes: + * [`Normalize.css`](https://necolas.github.com/normalize.css/) + for CSS normalizations and common bug fixes + * [`jQuery`](https://jquery.com/) via CDN with [SRI Hash](https://developer.mozilla.org/en-US/docs/Web/Security/Subresource_Integrity) and a local fallback + * A custom build of [`Modernizr`](https://modernizr.com/) for feature + detection + * [`Apache Server Configs`](https://github.com/h5bp/server-configs-apache) + that, among other, improve the web site's performance and security +* Placeholder CSS Media Queries. +* Useful CSS helper classes. +* Default print styles, performance optimized. +* An optimized version of the Google Universal Analytics snippet. +* Protection against any stray `console` statements causing JavaScript + errors in older browsers. +* "Delete-key friendly." Easy to strip out parts you don't need. +* Extensive inline and accompanying documentation. + + +## Browser support + +* Chrome *(latest 2)* +* Edge *(latest 2)* +* Firefox *(latest 2)* +* Internet Explorer 9+ +* Opera *(latest 2)* +* Safari *(latest 2)* + +*This doesn't mean that HTML5 Boilerplate cannot be used in older browsers, +just that we'll ensure compatibility with the ones mentioned above.* + +If you need legacy browser support you +can use [HTML5 Boilerplate v4](https://github.com/h5bp/html5-boilerplate/tree/v4) (IE 6+, Firefox 3.6+, Safari 4+), +or [HTML5 Boilerplate v5](https://github.com/h5bp/html5-boilerplate/tree/v5.0.0) (IE8+). They are no longer actively developed. + + +## Documentation + +Take a look at the [documentation table of contents](dist/doc/TOC.md). +This documentation is bundled with the project which makes it +available for offline reading and provides a useful starting point for +any documentation you want to write about your project. + + +## Contributing + +Hundreds of developers have helped to make the HTML5 Boilerplate. Anyone is welcome to [contribute](.github/CONTRIBUTING.md), +however, if you decide to get involved, please take a moment to review +the [guidelines](.github/CONTRIBUTING.md): + +* [Bug reports](.github/CONTRIBUTING.md#bugs) +* [Feature requests](.github/CONTRIBUTING.md#features) +* [Pull requests](.github/CONTRIBUTING.md#pull-requests) + + +## License + +The code is available under the [MIT license](LICENSE.txt). diff --git a/nesting/dist/.editorconfig b/nesting/dist/.editorconfig new file mode 100644 index 0000000..1b44e42 --- /dev/null +++ b/nesting/dist/.editorconfig @@ -0,0 +1,13 @@ +# editorconfig.org + +root = true + +[*] +charset = utf-8 +indent_size = 4 +indent_style = space +insert_final_newline = true +trim_trailing_whitespace = true + +[*.md] +trim_trailing_whitespace = false diff --git a/nesting/dist/.gitattributes b/nesting/dist/.gitattributes new file mode 100644 index 0000000..68af237 --- /dev/null +++ b/nesting/dist/.gitattributes @@ -0,0 +1,192 @@ +## GITATTRIBUTES FOR WEB PROJECTS +# +# These settings are for any web project. +# +# Details per file setting: +# text These files should be normalized (i.e. convert CRLF to LF). +# binary These files are binary and should be left untouched. +# +# Note that binary is a macro for -text -diff. +###################################################################### + +## AUTO-DETECT +## Handle line endings automatically for files detected as +## text and leave all files detected as binary untouched. +## This will handle all files NOT defined below. +* text=auto + +## SOURCE CODE +*.bat text eol=crlf +*.coffee text +*.css text +*.htm text +*.html text +*.inc text +*.ini text +*.js text +*.json text +*.jsx text +*.less text +*.od text +*.onlydata text +*.php text +*.pl text +*.py text +*.rb text +*.sass text +*.scm text +*.scss text +*.sh text eol=lf +*.sql text +*.styl text +*.tag text +*.ts text +*.tsx text +*.xml text +*.xhtml text + +## DOCKER +*.dockerignore text +Dockerfile text + +## DOCUMENTATION +*.markdown text +*.md text +*.mdwn text +*.mdown text +*.mkd text +*.mkdn text +*.mdtxt text +*.mdtext text +*.txt text +AUTHORS text +CHANGELOG text +CHANGES text +CONTRIBUTING text +COPYING text +copyright text +*COPYRIGHT* text +INSTALL text +license text +LICENSE text +NEWS text +readme text +*README* text +TODO text + +## TEMPLATES +*.dot text +*.ejs text +*.haml text +*.handlebars text +*.hbs text +*.hbt text +*.jade text +*.latte text +*.mustache text +*.njk text +*.phtml text +*.tmpl text +*.tpl text +*.twig text + +## LINTERS +.csslintrc text +.eslintrc text +.htmlhintrc text +.jscsrc text +.jshintrc text +.jshintignore text +.stylelintrc text + +## CONFIGS +*.bowerrc text +*.cnf text +*.conf text +*.config text +.browserslistrc text +.editorconfig text +.gitattributes text +.gitconfig text +.gitignore text +.htaccess text +*.npmignore text +*.yaml text +*.yml text +browserslist text +Makefile text +makefile text + +## HEROKU +Procfile text +.slugignore text + +## GRAPHICS +*.ai binary +*.bmp binary +*.eps binary +*.gif binary +*.ico binary +*.jng binary +*.jp2 binary +*.jpg binary +*.jpeg binary +*.jpx binary +*.jxr binary +*.pdf binary +*.png binary +*.psb binary +*.psd binary +*.svg text +*.svgz binary +*.tif binary +*.tiff binary +*.wbmp binary +*.webp binary + +## AUDIO +*.kar binary +*.m4a binary +*.mid binary +*.midi binary +*.mp3 binary +*.ogg binary +*.ra binary + +## VIDEO +*.3gpp binary +*.3gp binary +*.as binary +*.asf binary +*.asx binary +*.fla binary +*.flv binary +*.m4v binary +*.mng binary +*.mov binary +*.mp4 binary +*.mpeg binary +*.mpg binary +*.ogv binary +*.swc binary +*.swf binary +*.webm binary + +## ARCHIVES +*.7z binary +*.gz binary +*.jar binary +*.rar binary +*.tar binary +*.zip binary + +## FONTS +*.ttf binary +*.eot binary +*.otf binary +*.woff binary +*.woff2 binary + +## EXECUTABLES +*.exe binary +*.pyc binary diff --git a/nesting/dist/.gitignore b/nesting/dist/.gitignore new file mode 100644 index 0000000..ef8f3b1 --- /dev/null +++ b/nesting/dist/.gitignore @@ -0,0 +1,3 @@ +# Include your project-specific ignores in this file +# Read about how to use .gitignore: https://help.github.com/articles/ignoring-files +# Useful .gitignore templates: https://github.com/github/gitignore diff --git a/nesting/dist/.htaccess b/nesting/dist/.htaccess new file mode 100644 index 0000000..446a926 --- /dev/null +++ b/nesting/dist/.htaccess @@ -0,0 +1,984 @@ +# Apache Server Configs v2.14.0 | MIT License +# https://github.com/h5bp/server-configs-apache + +# (!) Using `.htaccess` files slows down Apache, therefore, if you have +# access to the main server configuration file (which is usually called +# `httpd.conf`), you should add this logic there. +# +# https://httpd.apache.org/docs/current/howto/htaccess.html. + +# ###################################################################### +# # CROSS-ORIGIN # +# ###################################################################### + +# ---------------------------------------------------------------------- +# | Cross-origin requests | +# ---------------------------------------------------------------------- + +# Allow cross-origin requests. +# +# https://developer.mozilla.org/en-US/docs/Web/HTTP/Access_control_CORS +# http://enable-cors.org/ +# http://www.w3.org/TR/cors/ + +# +# Header set Access-Control-Allow-Origin "*" +# + +# ---------------------------------------------------------------------- +# | Cross-origin images | +# ---------------------------------------------------------------------- + +# Send the CORS header for images when browsers request it. +# +# https://developer.mozilla.org/en-US/docs/Web/HTML/CORS_enabled_image +# https://blog.chromium.org/2011/07/using-cross-domain-images-in-webgl-and.html + + + + + SetEnvIf Origin ":" IS_CORS + Header set Access-Control-Allow-Origin "*" env=IS_CORS + + + + +# ---------------------------------------------------------------------- +# | Cross-origin web fonts | +# ---------------------------------------------------------------------- + +# Allow cross-origin access to web fonts. + + + + Header set Access-Control-Allow-Origin "*" + + + +# ---------------------------------------------------------------------- +# | Cross-origin resource timing | +# ---------------------------------------------------------------------- + +# Allow cross-origin access to the timing information for all resources. +# +# If a resource isn't served with a `Timing-Allow-Origin` header that +# would allow its timing information to be shared with the document, +# some of the attributes of the `PerformanceResourceTiming` object will +# be set to zero. +# +# http://www.w3.org/TR/resource-timing/ +# http://www.stevesouders.com/blog/2014/08/21/resource-timing-practical-tips/ + +# +# Header set Timing-Allow-Origin: "*" +# + + +# ###################################################################### +# # ERRORS # +# ###################################################################### + +# ---------------------------------------------------------------------- +# | Custom error messages/pages | +# ---------------------------------------------------------------------- + +# Customize what Apache returns to the client in case of an error. +# https://httpd.apache.org/docs/current/mod/core.html#errordocument + +ErrorDocument 404 /404.html + +# ---------------------------------------------------------------------- +# | Error prevention | +# ---------------------------------------------------------------------- + +# Disable the pattern matching based on filenames. +# +# This setting prevents Apache from returning a 404 error as the result +# of a rewrite when the directory with the same name does not exist. +# +# https://httpd.apache.org/docs/current/content-negotiation.html#multiviews + +Options -MultiViews + + +# ###################################################################### +# # INTERNET EXPLORER # +# ###################################################################### + +# ---------------------------------------------------------------------- +# | Document modes | +# ---------------------------------------------------------------------- + +# Force Internet Explorer 8/9/10 to render pages in the highest mode +# available in the various cases when it may not. +# +# https://hsivonen.fi/doctype/#ie8 +# +# (!) Starting with Internet Explorer 11, document modes are deprecated. +# If your business still relies on older web apps and services that were +# designed for older versions of Internet Explorer, you might want to +# consider enabling `Enterprise Mode` throughout your company. +# +# https://msdn.microsoft.com/en-us/library/ie/bg182625.aspx#docmode +# http://blogs.msdn.com/b/ie/archive/2014/04/02/stay-up-to-date-with-enterprise-mode-for-internet-explorer-11.aspx + + + + Header set X-UA-Compatible "IE=edge" + + # `mod_headers` cannot match based on the content-type, however, + # the `X-UA-Compatible` response header should be send only for + # HTML documents and not for the other resources. + + + Header unset X-UA-Compatible + + + + +# ---------------------------------------------------------------------- +# | Iframes cookies | +# ---------------------------------------------------------------------- + +# Allow cookies to be set from iframes in Internet Explorer. +# +# https://msdn.microsoft.com/en-us/library/ms537343.aspx +# http://www.w3.org/TR/2000/CR-P3P-20001215/ + +# +# Header set P3P "policyref=\"/w3c/p3p.xml\", CP=\"IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT\"" +# + + +# ###################################################################### +# # MEDIA TYPES AND CHARACTER ENCODINGS # +# ###################################################################### + +# ---------------------------------------------------------------------- +# | Media types | +# ---------------------------------------------------------------------- + +# Serve resources with the proper media types (f.k.a. MIME types). +# +# https://www.iana.org/assignments/media-types/media-types.xhtml +# https://httpd.apache.org/docs/current/mod/mod_mime.html#addtype + + + + # Data interchange + + AddType application/atom+xml atom + AddType application/json json map topojson + AddType application/ld+json jsonld + AddType application/rss+xml rss + AddType application/vnd.geo+json geojson + AddType application/xml rdf xml + + + # JavaScript + + # Normalize to standard type. + # https://tools.ietf.org/html/rfc4329#section-7.2 + + AddType application/javascript js + + + # Manifest files + + AddType application/manifest+json webmanifest + AddType application/x-web-app-manifest+json webapp + AddType text/cache-manifest appcache + + + # Media files + + AddType audio/mp4 f4a f4b m4a + AddType audio/ogg oga ogg opus + AddType image/bmp bmp + AddType image/svg+xml svg svgz + AddType image/webp webp + AddType video/mp4 f4v f4p m4v mp4 + AddType video/ogg ogv + AddType video/webm webm + AddType video/x-flv flv + + # Serving `.ico` image files with a different media type + # prevents Internet Explorer from displaying then as images: + # https://github.com/h5bp/html5-boilerplate/commit/37b5fec090d00f38de64b591bcddcb205aadf8ee + + AddType image/x-icon cur ico + + + # Web fonts + + AddType application/font-woff woff + AddType application/font-woff2 woff2 + AddType application/vnd.ms-fontobject eot + + # Browsers usually ignore the font media types and simply sniff + # the bytes to figure out the font type. + # https://mimesniff.spec.whatwg.org/#matching-a-font-type-pattern + # + # However, Blink and WebKit based browsers will show a warning + # in the console if the following font types are served with any + # other media types. + + AddType application/x-font-ttf ttc ttf + AddType font/opentype otf + + + # Other + + AddType application/octet-stream safariextz + AddType application/x-bb-appworld bbaw + AddType application/x-chrome-extension crx + AddType application/x-opera-extension oex + AddType application/x-xpinstall xpi + AddType text/vcard vcard vcf + AddType text/vnd.rim.location.xloc xloc + AddType text/vtt vtt + AddType text/x-component htc + + + +# ---------------------------------------------------------------------- +# | Character encodings | +# ---------------------------------------------------------------------- + +# Serve all resources labeled as `text/html` or `text/plain` +# with the media type `charset` parameter set to `UTF-8`. +# +# https://httpd.apache.org/docs/current/mod/core.html#adddefaultcharset + +AddDefaultCharset utf-8 + +# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + +# Serve the following file types with the media type `charset` +# parameter set to `UTF-8`. +# +# https://httpd.apache.org/docs/current/mod/mod_mime.html#addcharset + + + AddCharset utf-8 .atom \ + .bbaw \ + .css \ + .geojson \ + .js \ + .json \ + .jsonld \ + .manifest \ + .rdf \ + .rss \ + .topojson \ + .vtt \ + .webapp \ + .webmanifest \ + .xloc \ + .xml + + + +# ###################################################################### +# # REWRITES # +# ###################################################################### + +# ---------------------------------------------------------------------- +# | Rewrite engine | +# ---------------------------------------------------------------------- + +# (1) Turn on the rewrite engine (this is necessary in order for +# the `RewriteRule` directives to work). +# +# https://httpd.apache.org/docs/current/mod/mod_rewrite.html#RewriteEngine +# +# (2) Enable the `FollowSymLinks` option if it isn't already. +# +# https://httpd.apache.org/docs/current/mod/core.html#options +# +# (3) If your web host doesn't allow the `FollowSymlinks` option, +# you need to comment it out or remove it, and then uncomment +# the `Options +SymLinksIfOwnerMatch` line (4), but be aware +# of the performance impact. +# +# https://httpd.apache.org/docs/current/misc/perf-tuning.html#symlinks +# +# (4) Some cloud hosting services will require you set `RewriteBase`. +# +# https://www.rackspace.com/knowledge_center/frequently-asked-question/why-is-modrewrite-not-working-on-my-site +# https://httpd.apache.org/docs/current/mod/mod_rewrite.html#rewritebase +# +# (5) Depending on how your server is set up, you may also need to +# use the `RewriteOptions` directive to enable some options for +# the rewrite engine. +# +# https://httpd.apache.org/docs/current/mod/mod_rewrite.html#rewriteoptions +# +# (6) Set %{ENV:PROTO} variable, to allow rewrites to redirect with the +# appropriate schema automatically (http or https). + + + + # (1) + RewriteEngine On + + # (2) + Options +FollowSymlinks + + # (3) + # Options +SymLinksIfOwnerMatch + + # (4) + # RewriteBase / + + # (5) + # RewriteOptions + + # (6) + RewriteCond %{HTTPS} =on + RewriteRule ^ - [env=proto:https] + RewriteCond %{HTTPS} !=on + RewriteRule ^ - [env=proto:http] + + + +# ---------------------------------------------------------------------- +# | Forcing `https://` | +# ---------------------------------------------------------------------- + +# Redirect from the `http://` to the `https://` version of the URL. +# https://wiki.apache.org/httpd/RewriteHTTPToHTTPS + +# +# RewriteEngine On +# RewriteCond %{HTTPS} !=on +# RewriteRule ^(.*)$ https://%{HTTP_HOST}/$1 [R=301,L] +# + +# ---------------------------------------------------------------------- +# | Suppressing / Forcing the `www.` at the beginning of URLs | +# ---------------------------------------------------------------------- + +# The same content should never be available under two different +# URLs, especially not with and without `www.` at the beginning. +# This can cause SEO problems (duplicate content), and therefore, +# you should choose one of the alternatives and redirect the other +# one. +# +# By default `Option 1` (no `www.`) is activated. +# http://no-www.org/faq.php?q=class_b +# +# If you would prefer to use `Option 2`, just comment out all the +# lines from `Option 1` and uncomment the ones from `Option 2`. +# +# (!) NEVER USE BOTH RULES AT THE SAME TIME! + +# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + +# Option 1: rewrite www.example.com → example.com + + + RewriteEngine On + RewriteCond %{HTTPS} !=on + RewriteCond %{HTTP_HOST} ^www\.(.+)$ [NC] + RewriteRule ^ %{ENV:PROTO}://%1%{REQUEST_URI} [R=301,L] + + +# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + +# Option 2: rewrite example.com → www.example.com +# +# Be aware that the following might not be a good idea if you use "real" +# subdomains for certain parts of your website. + +# +# RewriteEngine On +# RewriteCond %{HTTPS} !=on +# RewriteCond %{HTTP_HOST} !^www\. [NC] +# RewriteCond %{SERVER_ADDR} !=127.0.0.1 +# RewriteCond %{SERVER_ADDR} !=::1 +# RewriteRule ^ %{ENV:PROTO}://www.%{HTTP_HOST}%{REQUEST_URI} [R=301,L] +# + + +# ###################################################################### +# # SECURITY # +# ###################################################################### + +# ---------------------------------------------------------------------- +# | Clickjacking | +# ---------------------------------------------------------------------- + +# Protect website against clickjacking. +# +# The example below sends the `X-Frame-Options` response header with +# the value `DENY`, informing browsers not to display the content of +# the web page in any frame. +# +# This might not be the best setting for everyone. You should read +# about the other two possible values the `X-Frame-Options` header +# field can have: `SAMEORIGIN` and `ALLOW-FROM`. +# https://tools.ietf.org/html/rfc7034#section-2.1. +# +# Keep in mind that while you could send the `X-Frame-Options` header +# for all of your website’s pages, this has the potential downside that +# it forbids even non-malicious framing of your content (e.g.: when +# users visit your website using a Google Image Search results page). +# +# Nonetheless, you should ensure that you send the `X-Frame-Options` +# header for all pages that allow a user to make a state changing +# operation (e.g: pages that contain one-click purchase links, checkout +# or bank-transfer confirmation pages, pages that make permanent +# configuration changes, etc.). +# +# Sending the `X-Frame-Options` header can also protect your website +# against more than just clickjacking attacks: +# https://cure53.de/xfo-clickjacking.pdf. +# +# https://tools.ietf.org/html/rfc7034 +# http://blogs.msdn.com/b/ieinternals/archive/2010/03/30/combating-clickjacking-with-x-frame-options.aspx +# https://www.owasp.org/index.php/Clickjacking + +# + +# Header set X-Frame-Options "DENY" + +# # `mod_headers` cannot match based on the content-type, however, +# # the `X-Frame-Options` response header should be send only for +# # HTML documents and not for the other resources. + +# +# Header unset X-Frame-Options +# + +# + +# ---------------------------------------------------------------------- +# | Content Security Policy (CSP) | +# ---------------------------------------------------------------------- + +# Mitigate the risk of cross-site scripting and other content-injection +# attacks. +# +# This can be done by setting a `Content Security Policy` which +# whitelists trusted sources of content for your website. +# +# The example header below allows ONLY scripts that are loaded from +# the current website's origin (no inline scripts, no CDN, etc). +# That almost certainly won't work as-is for your website! +# +# To make things easier, you can use an online CSP header generator +# such as: http://cspisawesome.com/. +# +# http://content-security-policy.com/ +# http://www.html5rocks.com/en/tutorials/security/content-security-policy/ +# http://www.w3.org/TR/CSP11/). + +# + +# Header set Content-Security-Policy "script-src 'self'; object-src 'self'" + +# # `mod_headers` cannot match based on the content-type, however, +# # the `Content-Security-Policy` response header should be send +# # only for HTML documents and not for the other resources. + +# +# Header unset Content-Security-Policy +# + +# + +# ---------------------------------------------------------------------- +# | File access | +# ---------------------------------------------------------------------- + +# Block access to directories without a default document. +# +# You should leave the following uncommented, as you shouldn't allow +# anyone to surf through every directory on your server (which may +# includes rather private places such as the CMS's directories). + + + Options -Indexes + + +# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + +# Block access to all hidden files and directories with the exception of +# the visible content from within the `/.well-known/` hidden directory. +# +# These types of files usually contain user preferences or the preserved +# state of an utility, and can include rather private places like, for +# example, the `.git` or `.svn` directories. +# +# The `/.well-known/` directory represents the standard (RFC 5785) path +# prefix for "well-known locations" (e.g.: `/.well-known/manifest.json`, +# `/.well-known/keybase.txt`), and therefore, access to its visible +# content should not be blocked. +# +# https://www.mnot.net/blog/2010/04/07/well-known +# https://tools.ietf.org/html/rfc5785 + + + RewriteEngine On + RewriteCond %{REQUEST_URI} "!(^|/)\.well-known/([^./]+./?)+$" [NC] + RewriteCond %{SCRIPT_FILENAME} -d [OR] + RewriteCond %{SCRIPT_FILENAME} -f + RewriteRule "(^|/)\." - [F] + + +# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + +# Block access to files that can expose sensitive information. +# +# By default, block access to backup and source files that may be +# left by some text editors and can pose a security risk when anyone +# has access to them. +# +# http://feross.org/cmsploit/ +# +# (!) Update the `` regular expression from below to +# include any files that might end up on your production server and +# can expose sensitive information about your website. These files may +# include: configuration files, files that contain metadata about the +# project (e.g.: project dependencies), build scripts, etc.. + + + + # Apache < 2.3 + + Order allow,deny + Deny from all + Satisfy All + + + # Apache ≥ 2.3 + + Require all denied + + + + +# ---------------------------------------------------------------------- +# | HTTP Strict Transport Security (HSTS) | +# ---------------------------------------------------------------------- + +# Force client-side SSL redirection. +# +# If a user types `example.com` in their browser, even if the server +# redirects them to the secure version of the website, that still leaves +# a window of opportunity (the initial HTTP connection) for an attacker +# to downgrade or redirect the request. +# +# The following header ensures that browser will ONLY connect to your +# server via HTTPS, regardless of what the users type in the browser's +# address bar. +# +# (!) Remove the `includeSubDomains` optional directive if the website's +# subdomains are not using HTTPS. +# +# http://www.html5rocks.com/en/tutorials/security/transport-layer-security/ +# https://tools.ietf.org/html/draft-ietf-websec-strict-transport-sec-14#section-6.1 +# http://blogs.msdn.com/b/ieinternals/archive/2014/08/18/hsts-strict-transport-security-attacks-mitigations-deployment-https.aspx + +# +# Header always set Strict-Transport-Security "max-age=16070400; includeSubDomains" +# + +# ---------------------------------------------------------------------- +# | Reducing MIME type security risks | +# ---------------------------------------------------------------------- + +# Prevent some browsers from MIME-sniffing the response. +# +# This reduces exposure to drive-by download attacks and cross-origin +# data leaks, and should be left uncommented, especially if the server +# is serving user-uploaded content or content that could potentially be +# treated as executable by the browser. +# +# http://www.slideshare.net/hasegawayosuke/owasp-hasegawa +# http://blogs.msdn.com/b/ie/archive/2008/07/02/ie8-security-part-v-comprehensive-protection.aspx +# https://msdn.microsoft.com/en-us/library/ie/gg622941.aspx +# https://mimesniff.spec.whatwg.org/ + + + Header set X-Content-Type-Options "nosniff" + + +# ---------------------------------------------------------------------- +# | Reflected Cross-Site Scripting (XSS) attacks | +# ---------------------------------------------------------------------- + +# (1) Try to re-enable the cross-site scripting (XSS) filter built +# into most web browsers. +# +# The filter is usually enabled by default, but in some cases it +# may be disabled by the user. However, in Internet Explorer for +# example, it can be re-enabled just by sending the +# `X-XSS-Protection` header with the value of `1`. +# +# (2) Prevent web browsers from rendering the web page if a potential +# reflected (a.k.a non-persistent) XSS attack is detected by the +# filter. +# +# By default, if the filter is enabled and browsers detect a +# reflected XSS attack, they will attempt to block the attack +# by making the smallest possible modifications to the returned +# web page. +# +# Unfortunately, in some browsers (e.g.: Internet Explorer), +# this default behavior may allow the XSS filter to be exploited, +# thereby, it's better to inform browsers to prevent the rendering +# of the page altogether, instead of attempting to modify it. +# +# https://hackademix.net/2009/11/21/ies-xss-filter-creates-xss-vulnerabilities +# +# (!) Do not rely on the XSS filter to prevent XSS attacks! Ensure that +# you are taking all possible measures to prevent XSS attacks, the +# most obvious being: validating and sanitizing your website's inputs. +# +# http://blogs.msdn.com/b/ie/archive/2008/07/02/ie8-security-part-iv-the-xss-filter.aspx +# http://blogs.msdn.com/b/ieinternals/archive/2011/01/31/controlling-the-internet-explorer-xss-filter-with-the-x-xss-protection-http-header.aspx +# https://www.owasp.org/index.php/Cross-site_Scripting_%28XSS%29 + +# + +# # (1) (2) +# Header set X-XSS-Protection "1; mode=block" + +# # `mod_headers` cannot match based on the content-type, however, +# # the `X-XSS-Protection` response header should be send only for +# # HTML documents and not for the other resources. + +# +# Header unset X-XSS-Protection +# + +# + +# ---------------------------------------------------------------------- +# | Server-side technology information | +# ---------------------------------------------------------------------- + +# Remove the `X-Powered-By` response header that: +# +# * is set by some frameworks and server-side languages +# (e.g.: ASP.NET, PHP), and its value contains information +# about them (e.g.: their name, version number) +# +# * doesn't provide any value as far as users are concern, +# and in some cases, the information provided by it can +# be used by attackers +# +# (!) If you can, you should disable the `X-Powered-By` header from the +# language / framework level (e.g.: for PHP, you can do that by setting +# `expose_php = off` in `php.ini`) +# +# https://php.net/manual/en/ini.core.php#ini.expose-php + + + Header unset X-Powered-By + + +# ---------------------------------------------------------------------- +# | Server software information | +# ---------------------------------------------------------------------- + +# Prevent Apache from adding a trailing footer line containing +# information about the server to the server-generated documents +# (e.g.: error messages, directory listings, etc.) +# +# https://httpd.apache.org/docs/current/mod/core.html#serversignature + +ServerSignature Off + +# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + +# Prevent Apache from sending in the `Server` response header its +# exact version number, the description of the generic OS-type or +# information about its compiled-in modules. +# +# (!) The `ServerTokens` directive will only work in the main server +# configuration file, so don't try to enable it in the `.htaccess` file! +# +# https://httpd.apache.org/docs/current/mod/core.html#servertokens + +#ServerTokens Prod + + +# ###################################################################### +# # WEB PERFORMANCE # +# ###################################################################### + +# ---------------------------------------------------------------------- +# | Compression | +# ---------------------------------------------------------------------- + + + + # Force compression for mangled `Accept-Encoding` request headers + # https://developer.yahoo.com/blogs/ydn/pushing-beyond-gzipping-25601.html + + + + SetEnvIfNoCase ^(Accept-EncodXng|X-cept-Encoding|X{15}|~{15}|-{15})$ ^((gzip|deflate)\s*,?\s*)+|[X~-]{4,13}$ HAVE_Accept-Encoding + RequestHeader append Accept-Encoding "gzip,deflate" env=HAVE_Accept-Encoding + + + + # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + # Compress all output labeled with one of the following media types. + # + # (!) For Apache versions below version 2.3.7 you don't need to + # enable `mod_filter` and can remove the `` + # and `` lines as `AddOutputFilterByType` is still in + # the core directives. + # + # https://httpd.apache.org/docs/current/mod/mod_filter.html#addoutputfilterbytype + + + AddOutputFilterByType DEFLATE "application/atom+xml" \ + "application/javascript" \ + "application/json" \ + "application/ld+json" \ + "application/manifest+json" \ + "application/rdf+xml" \ + "application/rss+xml" \ + "application/schema+json" \ + "application/vnd.geo+json" \ + "application/vnd.ms-fontobject" \ + "application/x-font-ttf" \ + "application/x-javascript" \ + "application/x-web-app-manifest+json" \ + "application/xhtml+xml" \ + "application/xml" \ + "font/eot" \ + "font/opentype" \ + "image/bmp" \ + "image/svg+xml" \ + "image/vnd.microsoft.icon" \ + "image/x-icon" \ + "text/cache-manifest" \ + "text/css" \ + "text/html" \ + "text/javascript" \ + "text/plain" \ + "text/vcard" \ + "text/vnd.rim.location.xloc" \ + "text/vtt" \ + "text/x-component" \ + "text/x-cross-domain-policy" \ + "text/xml" + + + + # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + # Map the following filename extensions to the specified + # encoding type in order to make Apache serve the file types + # with the appropriate `Content-Encoding` response header + # (do note that this will NOT make Apache compress them!). + # + # If these files types would be served without an appropriate + # `Content-Enable` response header, client applications (e.g.: + # browsers) wouldn't know that they first need to uncompress + # the response, and thus, wouldn't be able to understand the + # content. + # + # https://httpd.apache.org/docs/current/mod/mod_mime.html#addencoding + + + AddEncoding gzip svgz + + + + +# ---------------------------------------------------------------------- +# | Content transformation | +# ---------------------------------------------------------------------- + +# Prevent intermediate caches or proxies (e.g.: such as the ones +# used by mobile network providers) from modifying the website's +# content. +# +# https://tools.ietf.org/html/rfc2616#section-14.9.5 +# +# (!) If you are using `mod_pagespeed`, please note that setting +# the `Cache-Control: no-transform` response header will prevent +# `PageSpeed` from rewriting `HTML` files, and, if the +# `ModPagespeedDisableRewriteOnNoTransform` directive isn't set +# to `off`, also from rewriting other resources. +# +# https://developers.google.com/speed/pagespeed/module/configuration#notransform + +# +# Header merge Cache-Control "no-transform" +# + +# ---------------------------------------------------------------------- +# | ETags | +# ---------------------------------------------------------------------- + +# Remove `ETags` as resources are sent with far-future expires headers. +# +# https://developer.yahoo.com/performance/rules.html#etags +# https://tools.ietf.org/html/rfc7232#section-2.3 + +# `FileETag None` doesn't work in all cases. + + Header unset ETag + + +FileETag None + +# ---------------------------------------------------------------------- +# | Expires headers | +# ---------------------------------------------------------------------- + +# Serve resources with far-future expires headers. +# +# (!) If you don't control versioning with filename-based +# cache busting, you should consider lowering the cache times +# to something like one week. +# +# https://httpd.apache.org/docs/current/mod/mod_expires.html + + + + ExpiresActive on + ExpiresDefault "access plus 1 month" + + # CSS + + ExpiresByType text/css "access plus 1 year" + + + # Data interchange + + ExpiresByType application/atom+xml "access plus 1 hour" + ExpiresByType application/rdf+xml "access plus 1 hour" + ExpiresByType application/rss+xml "access plus 1 hour" + + ExpiresByType application/json "access plus 0 seconds" + ExpiresByType application/ld+json "access plus 0 seconds" + ExpiresByType application/schema+json "access plus 0 seconds" + ExpiresByType application/vnd.geo+json "access plus 0 seconds" + ExpiresByType application/xml "access plus 0 seconds" + ExpiresByType text/xml "access plus 0 seconds" + + + # Favicon (cannot be renamed!) and cursor images + + ExpiresByType image/vnd.microsoft.icon "access plus 1 week" + ExpiresByType image/x-icon "access plus 1 week" + + # HTML + + ExpiresByType text/html "access plus 0 seconds" + + + # JavaScript + + ExpiresByType application/javascript "access plus 1 year" + ExpiresByType application/x-javascript "access plus 1 year" + ExpiresByType text/javascript "access plus 1 year" + + + # Manifest files + + ExpiresByType application/manifest+json "access plus 1 week" + ExpiresByType application/x-web-app-manifest+json "access plus 0 seconds" + ExpiresByType text/cache-manifest "access plus 0 seconds" + + + # Media files + + ExpiresByType audio/ogg "access plus 1 month" + ExpiresByType image/bmp "access plus 1 month" + ExpiresByType image/gif "access plus 1 month" + ExpiresByType image/jpeg "access plus 1 month" + ExpiresByType image/png "access plus 1 month" + ExpiresByType image/svg+xml "access plus 1 month" + ExpiresByType image/webp "access plus 1 month" + ExpiresByType video/mp4 "access plus 1 month" + ExpiresByType video/ogg "access plus 1 month" + ExpiresByType video/webm "access plus 1 month" + + + # Web fonts + + # Embedded OpenType (EOT) + ExpiresByType application/vnd.ms-fontobject "access plus 1 month" + ExpiresByType font/eot "access plus 1 month" + + # OpenType + ExpiresByType font/opentype "access plus 1 month" + + # TrueType + ExpiresByType application/x-font-ttf "access plus 1 month" + + # Web Open Font Format (WOFF) 1.0 + ExpiresByType application/font-woff "access plus 1 month" + ExpiresByType application/x-font-woff "access plus 1 month" + ExpiresByType font/woff "access plus 1 month" + + # Web Open Font Format (WOFF) 2.0 + ExpiresByType application/font-woff2 "access plus 1 month" + + + # Other + + ExpiresByType text/x-cross-domain-policy "access plus 1 week" + + + +# ---------------------------------------------------------------------- +# | File concatenation | +# ---------------------------------------------------------------------- + +# Allow concatenation from within specific files. +# +# e.g.: +# +# If you have the following lines in a file called, for +# example, `main.combined.js`: +# +# +# +# +# Apache will replace those lines with the content of the +# specified files. + +# +# +# Options +Includes +# AddOutputFilterByType INCLUDES application/javascript \ +# application/x-javascript \ +# text/javascript +# SetOutputFilter INCLUDES +# +# +# Options +Includes +# AddOutputFilterByType INCLUDES text/css +# SetOutputFilter INCLUDES +# +# + +# ---------------------------------------------------------------------- +# | Filename-based cache busting | +# ---------------------------------------------------------------------- + +# If you're not using a build process to manage your filename version +# revving, you might want to consider enabling the following directives +# to route all requests such as `/style.12345.css` to `/style.css`. +# +# To understand why this is important and even a better solution than +# using something like `*.css?v231`, please see: +# http://www.stevesouders.com/blog/2008/08/23/revving-filenames-dont-use-querystring/ + +# +# RewriteEngine On +# RewriteCond %{REQUEST_FILENAME} !-f +# RewriteRule ^(.+)\.(\d+)\.(bmp|css|cur|gif|ico|jpe?g|js|png|svgz?|webp|webmanifest)$ $1.$3 [L] +# diff --git a/nesting/dist/404.html b/nesting/dist/404.html new file mode 100644 index 0000000..778d7ea --- /dev/null +++ b/nesting/dist/404.html @@ -0,0 +1,60 @@ + + + + + Page Not Found + + + + +

Page Not Found

+

Sorry, but the page you were trying to view does not exist.

+ + + diff --git a/nesting/dist/LICENSE.txt b/nesting/dist/LICENSE.txt new file mode 100644 index 0000000..294e91d --- /dev/null +++ b/nesting/dist/LICENSE.txt @@ -0,0 +1,19 @@ +Copyright (c) HTML5 Boilerplate + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is furnished to do +so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/nesting/dist/browserconfig.xml b/nesting/dist/browserconfig.xml new file mode 100644 index 0000000..219b759 --- /dev/null +++ b/nesting/dist/browserconfig.xml @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/nesting/dist/css/main.css b/nesting/dist/css/main.css new file mode 100644 index 0000000..46098cf --- /dev/null +++ b/nesting/dist/css/main.css @@ -0,0 +1,291 @@ +/*! HTML5 Boilerplate v6.0.1 | MIT License | https://html5boilerplate.com/ */ + +/* + * What follows is the result of much research on cross-browser styling. + * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal, + * Kroc Camen, and the H5BP dev community and team. + */ + +/* ========================================================================== + Base styles: opinionated defaults + ========================================================================== */ + +html { + color: #222; + font-size: 1em; + line-height: 1.4; +} + +/* + * Remove text-shadow in selection highlight: + * https://twitter.com/miketaylr/status/12228805301 + * + * Vendor-prefixed and regular ::selection selectors cannot be combined: + * https://stackoverflow.com/a/16982510/7133471 + * + * Customize the background color to match your design. + */ + +::-moz-selection { + background: #b3d4fc; + text-shadow: none; +} + +::selection { + background: #b3d4fc; + text-shadow: none; +} + +/* + * A better looking default horizontal rule + */ + +hr { + display: block; + height: 1px; + border: 0; + border-top: 1px solid #ccc; + margin: 1em 0; + padding: 0; +} + +/* + * Remove the gap between audio, canvas, iframes, + * images, videos and the bottom of their containers: + * https://github.com/h5bp/html5-boilerplate/issues/440 + */ + +audio, +canvas, +iframe, +img, +svg, +video { + vertical-align: middle; +} + +/* + * Remove default fieldset styles. + */ + +fieldset { + border: 0; + margin: 0; + padding: 0; +} + +/* + * Allow only vertical resizing of textareas. + */ + +textarea { + resize: vertical; +} + +/* ========================================================================== + Browser Upgrade Prompt + ========================================================================== */ + +.browserupgrade { + margin: 0.2em 0; + background: #ccc; + color: #000; + padding: 0.2em 0; +} + +/* ========================================================================== + Author's custom styles + ========================================================================== */ + + + + + + + + + + + + + + + + + +/* ========================================================================== + Helper classes + ========================================================================== */ + +/* + * Hide visually and from screen readers + */ + +.hidden { + display: none !important; +} + +/* + * Hide only visually, but have it available for screen readers: + * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility + * + * 1. For long content, line feeds are not interpreted as spaces and small width + * causes content to wrap 1 word per line: + * https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe + */ + +.visuallyhidden { + border: 0; + clip: rect(0 0 0 0); + -webkit-clip-path: inset(50%); + clip-path: inset(50%); + height: 1px; + margin: -1px; + overflow: hidden; + padding: 0; + position: absolute; + width: 1px; + white-space: nowrap; /* 1 */ +} + +/* + * Extends the .visuallyhidden class to allow the element + * to be focusable when navigated to via the keyboard: + * https://www.drupal.org/node/897638 + */ + +.visuallyhidden.focusable:active, +.visuallyhidden.focusable:focus { + clip: auto; + -webkit-clip-path: none; + clip-path: none; + height: auto; + margin: 0; + overflow: visible; + position: static; + width: auto; + white-space: inherit; +} + +/* + * Hide visually and from screen readers, but maintain layout + */ + +.invisible { + visibility: hidden; +} + +/* + * Clearfix: contain floats + * + * For modern browsers + * 1. The space content is one way to avoid an Opera bug when the + * `contenteditable` attribute is included anywhere else in the document. + * Otherwise it causes space to appear at the top and bottom of elements + * that receive the `clearfix` class. + * 2. The use of `table` rather than `block` is only necessary if using + * `:before` to contain the top-margins of child elements. + */ + +.clearfix:before, +.clearfix:after { + content: " "; /* 1 */ + display: table; /* 2 */ +} + +.clearfix:after { + clear: both; +} + +/* ========================================================================== + EXAMPLE Media Queries for Responsive Design. + These examples override the primary ('mobile first') styles. + Modify as content requires. + ========================================================================== */ + +@media only screen and (min-width: 35em) { + /* Style adjustments for viewports that meet the condition */ +} + +@media print, + (-webkit-min-device-pixel-ratio: 1.25), + (min-resolution: 1.25dppx), + (min-resolution: 120dpi) { + /* Style adjustments for high resolution devices */ +} + +/* ========================================================================== + Print styles. + Inlined to avoid the additional HTTP request: + http://www.phpied.com/delay-loading-your-print-css/ + ========================================================================== */ + +@media print { + *, + *:before, + *:after { + background: transparent !important; + color: #000 !important; /* Black prints faster: + http://www.sanbeiji.com/archives/953 */ + box-shadow: none !important; + text-shadow: none !important; + } + + a, + a:visited { + text-decoration: underline; + } + + a[href]:after { + content: " (" attr(href) ")"; + } + + abbr[title]:after { + content: " (" attr(title) ")"; + } + + /* + * Don't show links that are fragment identifiers, + * or use the `javascript:` pseudo protocol + */ + + a[href^="#"]:after, + a[href^="javascript:"]:after { + content: ""; + } + + pre { + white-space: pre-wrap !important; + } + pre, + blockquote { + border: 1px solid #999; + page-break-inside: avoid; + } + + /* + * Printing Tables: + * http://css-discuss.incutio.com/wiki/Printing_Tables + */ + + thead { + display: table-header-group; + } + + tr, + img { + page-break-inside: avoid; + } + + p, + h2, + h3 { + orphans: 3; + widows: 3; + } + + h2, + h3 { + page-break-after: avoid; + } +} diff --git a/nesting/dist/css/normalize.css b/nesting/dist/css/normalize.css new file mode 100644 index 0000000..fa4e73d --- /dev/null +++ b/nesting/dist/css/normalize.css @@ -0,0 +1,447 @@ +/*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */ + +/* Document + ========================================================================== */ + +/** + * 1. Correct the line height in all browsers. + * 2. Prevent adjustments of font size after orientation changes in + * IE on Windows Phone and in iOS. + */ + +html { + line-height: 1.15; /* 1 */ + -ms-text-size-adjust: 100%; /* 2 */ + -webkit-text-size-adjust: 100%; /* 2 */ +} + +/* Sections + ========================================================================== */ + +/** + * Remove the margin in all browsers (opinionated). + */ + +body { + margin: 0; +} + +/** + * Add the correct display in IE 9-. + */ + +article, +aside, +footer, +header, +nav, +section { + display: block; +} + +/** + * Correct the font size and margin on `h1` elements within `section` and + * `article` contexts in Chrome, Firefox, and Safari. + */ + +h1 { + font-size: 2em; + margin: 0.67em 0; +} + +/* Grouping content + ========================================================================== */ + +/** + * Add the correct display in IE 9-. + * 1. Add the correct display in IE. + */ + +figcaption, +figure, +main { /* 1 */ + display: block; +} + +/** + * Add the correct margin in IE 8. + */ + +figure { + margin: 1em 40px; +} + +/** + * 1. Add the correct box sizing in Firefox. + * 2. Show the overflow in Edge and IE. + */ + +hr { + box-sizing: content-box; /* 1 */ + height: 0; /* 1 */ + overflow: visible; /* 2 */ +} + +/** + * 1. Correct the inheritance and scaling of font size in all browsers. + * 2. Correct the odd `em` font sizing in all browsers. + */ + +pre { + font-family: monospace, monospace; /* 1 */ + font-size: 1em; /* 2 */ +} + +/* Text-level semantics + ========================================================================== */ + +/** + * 1. Remove the gray background on active links in IE 10. + * 2. Remove gaps in links underline in iOS 8+ and Safari 8+. + */ + +a { + background-color: transparent; /* 1 */ + -webkit-text-decoration-skip: objects; /* 2 */ +} + +/** + * 1. Remove the bottom border in Chrome 57- and Firefox 39-. + * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari. + */ + +abbr[title] { + border-bottom: none; /* 1 */ + text-decoration: underline; /* 2 */ + text-decoration: underline dotted; /* 2 */ +} + +/** + * Prevent the duplicate application of `bolder` by the next rule in Safari 6. + */ + +b, +strong { + font-weight: inherit; +} + +/** + * Add the correct font weight in Chrome, Edge, and Safari. + */ + +b, +strong { + font-weight: bolder; +} + +/** + * 1. Correct the inheritance and scaling of font size in all browsers. + * 2. Correct the odd `em` font sizing in all browsers. + */ + +code, +kbd, +samp { + font-family: monospace, monospace; /* 1 */ + font-size: 1em; /* 2 */ +} + +/** + * Add the correct font style in Android 4.3-. + */ + +dfn { + font-style: italic; +} + +/** + * Add the correct background and color in IE 9-. + */ + +mark { + background-color: #ff0; + color: #000; +} + +/** + * Add the correct font size in all browsers. + */ + +small { + font-size: 80%; +} + +/** + * Prevent `sub` and `sup` elements from affecting the line height in + * all browsers. + */ + +sub, +sup { + font-size: 75%; + line-height: 0; + position: relative; + vertical-align: baseline; +} + +sub { + bottom: -0.25em; +} + +sup { + top: -0.5em; +} + +/* Embedded content + ========================================================================== */ + +/** + * Add the correct display in IE 9-. + */ + +audio, +video { + display: inline-block; +} + +/** + * Add the correct display in iOS 4-7. + */ + +audio:not([controls]) { + display: none; + height: 0; +} + +/** + * Remove the border on images inside links in IE 10-. + */ + +img { + border-style: none; +} + +/** + * Hide the overflow in IE. + */ + +svg:not(:root) { + overflow: hidden; +} + +/* Forms + ========================================================================== */ + +/** + * 1. Change the font styles in all browsers (opinionated). + * 2. Remove the margin in Firefox and Safari. + */ + +button, +input, +optgroup, +select, +textarea { + font-family: sans-serif; /* 1 */ + font-size: 100%; /* 1 */ + line-height: 1.15; /* 1 */ + margin: 0; /* 2 */ +} + +/** + * Show the overflow in IE. + * 1. Show the overflow in Edge. + */ + +button, +input { /* 1 */ + overflow: visible; +} + +/** + * Remove the inheritance of text transform in Edge, Firefox, and IE. + * 1. Remove the inheritance of text transform in Firefox. + */ + +button, +select { /* 1 */ + text-transform: none; +} + +/** + * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video` + * controls in Android 4. + * 2. Correct the inability to style clickable types in iOS and Safari. + */ + +button, +html [type="button"], /* 1 */ +[type="reset"], +[type="submit"] { + -webkit-appearance: button; /* 2 */ +} + +/** + * Remove the inner border and padding in Firefox. + */ + +button::-moz-focus-inner, +[type="button"]::-moz-focus-inner, +[type="reset"]::-moz-focus-inner, +[type="submit"]::-moz-focus-inner { + border-style: none; + padding: 0; +} + +/** + * Restore the focus styles unset by the previous rule. + */ + +button:-moz-focusring, +[type="button"]:-moz-focusring, +[type="reset"]:-moz-focusring, +[type="submit"]:-moz-focusring { + outline: 1px dotted ButtonText; +} + +/** + * Correct the padding in Firefox. + */ + +fieldset { + padding: 0.35em 0.75em 0.625em; +} + +/** + * 1. Correct the text wrapping in Edge and IE. + * 2. Correct the color inheritance from `fieldset` elements in IE. + * 3. Remove the padding so developers are not caught out when they zero out + * `fieldset` elements in all browsers. + */ + +legend { + box-sizing: border-box; /* 1 */ + color: inherit; /* 2 */ + display: table; /* 1 */ + max-width: 100%; /* 1 */ + padding: 0; /* 3 */ + white-space: normal; /* 1 */ +} + +/** + * 1. Add the correct display in IE 9-. + * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera. + */ + +progress { + display: inline-block; /* 1 */ + vertical-align: baseline; /* 2 */ +} + +/** + * Remove the default vertical scrollbar in IE. + */ + +textarea { + overflow: auto; +} + +/** + * 1. Add the correct box sizing in IE 10-. + * 2. Remove the padding in IE 10-. + */ + +[type="checkbox"], +[type="radio"] { + box-sizing: border-box; /* 1 */ + padding: 0; /* 2 */ +} + +/** + * Correct the cursor style of increment and decrement buttons in Chrome. + */ + +[type="number"]::-webkit-inner-spin-button, +[type="number"]::-webkit-outer-spin-button { + height: auto; +} + +/** + * 1. Correct the odd appearance in Chrome and Safari. + * 2. Correct the outline style in Safari. + */ + +[type="search"] { + -webkit-appearance: textfield; /* 1 */ + outline-offset: -2px; /* 2 */ +} + +/** + * Remove the inner padding and cancel buttons in Chrome and Safari on macOS. + */ + +[type="search"]::-webkit-search-cancel-button, +[type="search"]::-webkit-search-decoration { + -webkit-appearance: none; +} + +/** + * 1. Correct the inability to style clickable types in iOS and Safari. + * 2. Change font properties to `inherit` in Safari. + */ + +::-webkit-file-upload-button { + -webkit-appearance: button; /* 1 */ + font: inherit; /* 2 */ +} + +/* Interactive + ========================================================================== */ + +/* + * Add the correct display in IE 9-. + * 1. Add the correct display in Edge, IE, and Firefox. + */ + +details, /* 1 */ +menu { + display: block; +} + +/* + * Add the correct display in all browsers. + */ + +summary { + display: list-item; +} + +/* Scripting + ========================================================================== */ + +/** + * Add the correct display in IE 9-. + */ + +canvas { + display: inline-block; +} + +/** + * Add the correct display in IE. + */ + +template { + display: none; +} + +/* Hidden + ========================================================================== */ + +/** + * Add the correct display in IE 10-. + */ + +[hidden] { + display: none; +} diff --git a/nesting/dist/doc/TOC.md b/nesting/dist/doc/TOC.md new file mode 100644 index 0000000..8e0e950 --- /dev/null +++ b/nesting/dist/doc/TOC.md @@ -0,0 +1,35 @@ +[HTML5 Boilerplate homepage](https://html5boilerplate.com/) + +## Getting started + +* [Usage](usage.md) — Overview of the project contents. +* [FAQ](faq.md) — Frequently asked questions along with their answers. + +## HTML5 Boilerplate core + +* [HTML](html.md) — Guide to the default HTML. +* [CSS](css.md) — Guide to the default CSS. +* [JavaScript](js.md) — Guide to the default JavaScript. +* [Everything else](misc.md). + +## Development + +* [Extending and customizing HTML5 Boilerplate](extend.md) — Going further + with the boilerplate. + +## Related projects + +The [H5BP organization](https://github.com/h5bp) maintains several projects +that complement HTML5 Boilerplate, projects that can help you improve different +aspects of your website/web app (e.g.: the performance, security, etc.). + +* [Server Configs](https://github.com/h5bp/server-configs) — Fast and + smart configurations for web servers such as Apache and Nginx. + * [Apache](https://github.com/h5bp/server-configs-apache) + * [Google App Engine (GAE)](https://github.com/h5bp/server-configs-gae) + * [Internet Information Services (IIS)](https://github.com/h5bp/server-configs-iis) + * [lighttpd](https://github.com/h5bp/server-configs-lighttpd) + * [Nginx](https://github.com/h5bp/server-configs-nginx) + * [Node.js](https://github.com/h5bp/server-configs-node) +* [Ant Build Script](https://github.com/h5bp/ant-build-script) — Apache + Ant based build script. diff --git a/nesting/dist/doc/css.md b/nesting/dist/doc/css.md new file mode 100644 index 0000000..ac853ef --- /dev/null +++ b/nesting/dist/doc/css.md @@ -0,0 +1,164 @@ +[HTML5 Boilerplate homepage](https://html5boilerplate.com/) | [Documentation +table of contents](TOC.md) + +# The CSS + +HTML5 Boilerplate's CSS includes: + +* [Normalize.css](#normalizecss) +* [Useful defaults](#useful-defaults) +* [Common helpers](#common-helpers) +* [Placeholder media queries](#media-queries) +* [Print styles](#print-styles) + +This starting CSS does not rely on the presence of +[conditional class names](https://www.paulirish.com/2008/conditional-stylesheets-vs-css-hacks-answer-neither/), +[conditional style sheets](https://css-tricks.com/how-to-create-an-ie-only-stylesheet/), +or [Modernizr](https://modernizr.com/), and it is ready to use no matter what +your development preferences happen to be. + + +## Normalize.css + +In order to make browsers render all elements more consistently and in line +with modern standards, we include +[Normalize.css](https://necolas.github.io/normalize.css/) — a modern, HTML5-ready +alternative to CSS resets. + +As opposed to CSS resets, Normalize.css: + +* targets only the styles that need normalizing +* preserves useful browser defaults rather than erasing them +* corrects bugs and common browser inconsistencies +* improves usability with subtle improvements +* doesn't clutter the debugging tools +* has better documentation + +For more information about Normalize.css, please refer to its [project +page](https://necolas.github.com/normalize.css/), as well as this +[blog post](http://nicolasgallagher.com/about-normalize-css/). + + +## Useful defaults + +Several base styles are included that build upon `Normalize.css`. These +styles: + +* provide basic typography settings that improve text readability +* protect against unwanted `text-shadow` during text highlighting +* tweak the default alignment of some elements (e.g.: `img`, `video`, + `fieldset`, `textarea`) +* style the prompt that is displayed to users using an outdated browser + +You are free and even encouraged to modify or add to these base styles as your +project requires. + + +## Common helpers + +Along with the base styles, we also provide some commonly used helper classes. + +#### `.hidden` + +The `hidden` class can be added to any element that you want to hide visually +and from screen readers. It could be an element that will be populated and +displayed later, or an element you will hide with JavaScript. + +#### `.visuallyhidden` + +The `visuallyhidden` class can be added to any element that you want to hide +visually, while still have its content accessible to screen readers. + +See also: + +* [CSS in Action: Invisible Content Just for Screen Reader + Users](http://webaim.org/techniques/css/invisiblecontent/) +* [Hiding content for + accessibility](https://snook.ca/archives/html_and_css/hiding-content-for-accessibility) +* [HTML5 Boilerplate - Issue #194](https://github.com/h5bp/html5-boilerplate/issues/194). + +__N.B.__ [The visuallyhidden class can be an accessibility issue for users using high contrast modes.](https://www.paciellogroup.com/blog/2012/08/notes-on-accessible-css-image-sprites/) + +>Use JavaScript to detect when images are disabled and remove the CSS visually hidden display state of the text alternative. +Use JavaScript to detect when Windows high contrast mode is enabled and remove the CSS visually hidden display state of the text alternative. + +#### `.invisible` + +The `invisible` class can be added to any element that you want to hide +visually and from screen readers, but without affecting the layout. + +As opposed to the `hidden` class that effectively removes the element from the +layout, the `invisible` class will simply make the element invisible while +keeping it in the flow and not affecting the positioning of the surrounding +content. + +__N.B.__ Try to stay away from, and don't use the classes specified above for +[keyword stuffing](https://en.wikipedia.org/wiki/Keyword_stuffing) as you will +harm your site's ranking! + +#### `.clearfix` + +The `clearfix` class can be added to any element to ensure that it always fully +contains its floated children. + +Over the years there have been many variants of the clearfix hack, but currently, +we use the [micro clearfix](http://nicolasgallagher.com/micro-clearfix-hack/). + + +## Media Queries + +HTML5 Boilerplate makes it easy for you to get started with a +[_mobile first_](http://www.lukew.com/presos/preso.asp?26) and [_responsive web +design_](http://alistapart.com/article/responsive-web-design) approach to +development. But it's worth remembering that there are [no silver +bullets](https://cloudfour.com/thinks/css-media-query-for-mobile-is-fools-gold/). + +We include placeholder media queries to help you build up your mobile styles for +wider viewports and high-resolution displays. It's recommended that you adapt +these media queries based on the content of your site rather than mirroring the +fixed dimensions of specific devices. + +If you do not want to take the _mobile first_ approach, you can simply edit or +remove these placeholder media queries. One possibility would be to work from +wide viewports down, and use `max-width` media queries instead (e.g.: +`@media only screen and (max-width: 480px)`). + + +## Print styles + +Lastly, we provide some useful print styles that will optimize the printing +process, as well as make the printed pages easier to read. + +At printing time, these styles will: + +* strip all background colors, change the font color to black, and remove the + `text-shadow` — done in order to [help save printer ink and speed up the + printing process](http://www.sanbeiji.com/archives/953) +* underline and expand links to include the URL — done in order to allow users + to know where to refer to
+ (exceptions to this are: the links that are + [fragment identifiers](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a#attr-href), + or use the + [`javascript:` pseudo protocol](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/void#JavaScript_URIs)) +* expand abbreviations to include the full description — done in order to allow + users to know what the abbreviations stands for +* provide instructions on how browsers should break the content into pages and + on [orphans/widows](https://en.wikipedia.org/wiki/Widows_and_orphans), namely, + we instruct + [supporting browsers](https://en.wikipedia.org/wiki/Comparison_of_layout_engines_%28Cascading_Style_Sheets%29#Grammar_and_rules) + that they should: + + * ensure the table header (``) is [printed on each page spanned by the + table](http://css-discuss.incutio.com/wiki/Printing_Tables) + * prevent block quotations, preformatted text, images and table rows from + being split onto two different pages + * ensure that headings never appear on a different page than the text they + are associated with + * ensure that + [orphans and widows](https://en.wikipedia.org/wiki/Widows_and_orphans) do + [not appear on printed pages](https://css-tricks.com/almanac/properties/o/orphans/) + +The print styles are included along with the other `css` to [avoid the +additional HTTP request](http://www.phpied.com/delay-loading-your-print-css/). +Also, they should always be included last, so that the other styles can be +overwritten. diff --git a/nesting/dist/doc/extend.md b/nesting/dist/doc/extend.md new file mode 100644 index 0000000..4e051ca --- /dev/null +++ b/nesting/dist/doc/extend.md @@ -0,0 +1,693 @@ +[HTML5 Boilerplate homepage](https://html5boilerplate.com) | [Documentation +table of contents](TOC.md) + +# Extend and customise HTML5 Boilerplate + +Here is some useful advice for how you can make your project with HTML5 +Boilerplate even better. We don't want to include it all by default, as +not everything fits with everyone's needs. + + +* [App Stores](#app-stores) +* [DNS prefetching](#dns-prefetching) +* [Google Universal Analytics](#google-universal-analytics) +* [Internet Explorer](#internet-explorer) +* [Miscellaneous](#miscellaneous) +* [News Feeds](#news-feeds) +* [Search](#search) +* [Social Networks](#social-networks) +* [URLs](#urls) +* [Web Apps](#web-apps) + + +## App Stores + +### Smart App Banners in iOS 6+ Safari + +Stop bothering everyone with gross modals advertising your entry in the +App Store. Include the following [meta tag](https://developer.apple.com/library/IOS/documentation/AppleApplications/Reference/SafariWebContent/PromotingAppswithAppBanners/PromotingAppswithAppBanners.html#//apple_ref/doc/uid/TP40002051-CH6-SW2) +will unintrusively allow the user the option to download your iOS app, +or open it with some data about the user's current state on the website. + +```html + +``` + +## DNS prefetching + +In short, DNS Prefetching is a method of informing the browser of domain names +referenced on a site so that the client can resolve the DNS for those hosts, +cache them, and when it comes time to use them, have a faster turn around on +the request. + +### Implicit prefetches + +There is a lot of prefetching done for you automatically by the browser. When +the browser encounters an anchor in your html that does not share the same +domain name as the current location the browser requests, from the client OS, +the IP address for this new domain. The client first checks its cache and +then, lacking a cached copy, makes a request from a DNS server. These requests +happen in the background and are not meant to block the rendering of the +page. + +The goal of this is that when the foreign IP address is finally needed it will +already be in the client cache and will not block the loading of the foreign +content. Fewer requests result in faster page load times. The perception of this +is increased on a mobile platform where DNS latency can be greater. + +#### Disable implicit prefetching + +```html + +``` + +Even with X-DNS-Prefetch-Control meta tag (or http header) browsers will still +prefetch any explicit dns-prefetch links. + +**_WARNING:_** THIS MAY MAKE YOUR SITE SLOWER IF YOU RELY ON RESOURCES FROM +FOREIGN DOMAINS. + +### Explicit prefetches + +Typically the browser only scans the HTML for foreign domains. If you have +resources that are outside of your HTML (a javascript request to a remote +server or a CDN that hosts content that may not be present on every page of +your site, for example) then you can queue up a domain name to be prefetched. + +```html + + +``` + +You can use as many of these as you need, but it's best if they are all +immediately after the [Meta +Charset](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/meta#attr-charset) +element (which should go right at the top of the `head`), so the browser can +act on them ASAP. + +#### Common Prefetch Links + +Amazon S3: + +```html + +``` + +Google APIs: + +```html + +``` + +Microsoft Ajax Content Delivery Network: + +```html + + +``` + +### Further reading about DNS prefetching + +* https://developer.mozilla.org/en-US/docs/Controlling_DNS_prefetching +* https://dev.chromium.org/developers/design-documents/dns-prefetching +* https://blogs.msdn.microsoft.com/ie/2011/03/17/internet-explorer-9-network-performance-improvements/ +* http://dayofjs.com/videos/22158462/web-browsers_alex-russel + + +## Google Universal Analytics + +### More tracking settings + +The [optimized Google Universal Analytics +snippet](https://mathiasbynens.be/notes/async-analytics-snippet#universal-analytics) +included with HTML5 Boilerplate includes something like this: + +```js +ga('create', 'UA-XXXXX-X', 'auto'); ga('send', 'pageview'); +``` + +To customize further, see Google's [Advanced +Setup](https://developers.google.com/analytics/devguides/collection/analyticsjs/advanced), +[Pageview](https://developers.google.com/analytics/devguides/collection/analyticsjs/pages), +and [Event](https://developers.google.com/analytics/devguides/collection/analyticsjs/events) Docs. + +### Anonymize IP addresses + +In some countries, no personal data may be transferred outside jurisdictions +that do not have similarly strict laws (i.e. from Germany to outside the EU). +Thus a webmaster using the Google Universal Analytics may have to ensure that +no personal (trackable) data is transferred to the US. You can do that with +[the `ga('set', 'anonymizeIp', true);` +parameter](https://developers.google.com/analytics/devguides/collection/analyticsjs/advanced#anonymizeip) +before sending any events/pageviews. In use it looks like this: + +```js +ga('create', 'UA-XXXXX-X', 'auto'); +ga('set', 'anonymizeIp', true); +ga('send', 'pageview'); +``` + +### Track jQuery AJAX requests in Google Analytics + +An article by @JangoSteve explains how to [track jQuery AJAX requests in Google +Analytics](https://www.alfajango.com/blog/track-jquery-ajax-requests-in-google-analytics/). + +Add this to `plugins.js`: + +```js +/* + * Log all jQuery AJAX requests to Google Analytics + * See: https://www.alfajango.com/blog/track-jquery-ajax-requests-in-google-analytics/ + */ +if (typeof ga !== "undefined" && ga !== null) { + $(document).ajaxSend(function(event, xhr, settings){ + ga('send', 'pageview', settings.url); + }); +} +``` + +### Track JavaScript errors in Google Analytics + +Add this function after `ga` is defined: + +```js +(function(window){ + var undefined, + link = function (href) { + var a = window.document.createElement('a'); + a.href = href; + return a; + }; + window.onerror = function (message, file, line, column) { + var host = link(file).hostname; + ga('send', { + 'hitType': 'event', + 'eventCategory': (host == window.location.hostname || host == undefined || host == '' ? '' : 'external ') + 'error', + 'eventAction': message, + 'eventLabel': (file + ' LINE: ' + line + (column ? ' COLUMN: ' + column : '')).trim(), + 'nonInteraction': 1 + }); + }; +}(window)); +``` + +### Track page scroll + +Add this function after `ga` is defined: + +```js +$(function(){ + var isDuplicateScrollEvent, + scrollTimeStart = new Date, + $window = $(window), + $document = $(document), + scrollPercent; + + $window.scroll(function() { + scrollPercent = Math.round(100 * ($window.height() + $window.scrollTop())/$document.height()); + if (scrollPercent > 90 && !isDuplicateScrollEvent) { //page scrolled to 90% + isDuplicateScrollEvent = 1; + ga('send', 'event', 'scroll', + 'Window: ' + $window.height() + 'px; Document: ' + $document.height() + 'px; Time: ' + Math.round((new Date - scrollTimeStart )/1000,1) + 's' + ); + } + }); +}); +``` + +## Internet Explorer + +### Prompt users to switch to "Desktop Mode" in IE10 Metro + +IE10 does not support plugins, such as Flash, in Metro mode. If +your site requires plugins, you can let users know that via the +`x-ua-compatible` meta element, which will prompt them to switch +to Desktop Mode. + +```html + +``` + +Here's what it looks like alongside H5BP's default `x-ua-compatible` +values: + +```html + +``` + +You can find more information in [Microsoft's IEBlog post about prompting for +plugin use in IE10 Metro +Mode](https://blogs.msdn.microsoft.com/ie/2012/01/31/web-sites-and-a-plug-in-free-web/). + +### IE Pinned Sites (IE9+) + +Enabling your application for pinning will allow IE9 users to add it to their +Windows Taskbar and Start Menu. This comes with a range of new tools that you +can easily configure with the elements below. See more [documentation on IE9 +Pinned Sites](https://msdn.microsoft.com/en-us/library/gg131029.aspx). + +### Name the Pinned Site for Windows + +Without this rule, Windows will use the page title as the name for your +application. + +```html + +``` + +### Give your Pinned Site a tooltip + +You know — a tooltip. A little textbox that appears when the user holds their +mouse over your Pinned Site's icon. + +```html + +``` + +### Set a default page for your Pinned Site + +If the site should go to a specific URL when it is pinned (such as the +homepage), enter it here. One idea is to send it to a special URL so you can +track the number of pinned users, like so: +`https://www.example.com/index.html?pinned=true` + +```html + +``` + +### Recolor IE's controls manually for a Pinned Site + +IE9+ will automatically use the overall color of your Pinned Site's favicon to +shade its browser buttons. UNLESS you give it another color here. Only use +named colors (`red`) or hex colors (`#ff0000`). + +```html + +``` + +### Manually set the window size of a Pinned Site + +If the site should open at a certain window size once pinned, you can specify +the dimensions here. It only supports static pixel dimensions. 800x600 +minimum. + +```html + +``` + +### Jump List "Tasks" for Pinned Sites + +Add Jump List Tasks that will appear when the Pinned Site's icon gets a +right-click. Each Task goes to the specified URL, and gets its own mini icon +(essentially a favicon, a 16x16 .ICO). You can add as many of these as you +need. + +```html + + +``` + +### (Windows 8) High quality visuals for Pinned Sites + +Windows 8 adds the ability for you to provide a PNG tile image and specify the +tile's background color. [Full details on the IE +blog](https://blogs.msdn.microsoft.com/ie/2012/06/08/high-quality-visuals-for-pinned-sites-in-windows-8/). + +* Create a 144x144 image of your site icon, filling all of the canvas, and + using a transparent background. +* Save this image as a 32-bit PNG and optimize it without reducing + colour-depth. It can be named whatever you want (e.g. `metro-tile.png`). +* To reference the tile and its color, add the HTML `meta` elements described + in the IE Blog post. + +### (Windows 8) Badges for Pinned Sites + +IE10 will poll an XML document for badge information to display on your app's +tile in the Start screen. The user will be able to receive these badge updates +even when your app isn't actively running. The badge's value can be a number, +or one of a predefined list of glyphs. + +* [Tutorial on IEBlog with link to badge XML schema](https://blogs.msdn.microsoft.com/ie/2012/04/03/pinned-sites-in-windows-8/) +* [Available badge values](https://msdn.microsoft.com/en-us/library/ie/br212849.aspx) + +```html + +``` + +### Disable link highlighting upon tap in IE10 + +Similar to [-webkit-tap-highlight-color](https://davidwalsh.name/mobile-highlight-color) +in iOS Safari. Unlike that CSS property, this is an HTML meta element, and its +value is boolean rather than a color. It's all or nothing. + +```html + +``` + +You can read about this useful element and more techniques in +[Microsoft's documentation on adapting WebKit-oriented apps for IE10](https://blogs.windows.com/buildingapps/2012/11/15/adapting-your-webkit-optimized-site-for-internet-explorer-10/) + +## Search + +### Direct search spiders to your sitemap + +After creating a [sitemap](https://www.sitemaps.org/protocol.html) + +Submit it to search engine tool: +* [Google](https://www.google.com/webmasters/tools/sitemap-list) +* [Bing](https://www.bing.com/toolbox/webmaster) +* [Yandex](https://webmaster.yandex.com/) +* [Baidu](https://zhanzhang.baidu.com/) +OR +Insert the following line anywhere in your robots.txt file, specifying the path to your sitemap: +``` +Sitemap: https://example.com/sitemap_location.xml +``` + +### Hide pages from search engines + +According to Heather Champ, former community manager at Flickr, you should not +allow search engines to index your "Contact Us" or "Complaints" page if you +value your sanity. This is an HTML-centric way of achieving that. + +```html + +``` + +**_WARNING:_** DO NOT INCLUDE ON PAGES THAT SHOULD APPEAR IN SEARCH ENGINES. + +### Firefox and IE Search Plugins + +Sites with in-site search functionality should be strongly considered for a +browser search plugin. A "search plugin" is an XML file which defines how your +plugin behaves in the browser. [How to make a browser search +plugin](https://www.google.com/search?ie=UTF-8&q=how+to+make+browser+search+plugin). + +```html + +``` + + +## Miscellaneous + +* Use [polyfills](https://github.com/Modernizr/Modernizr/wiki/HTML5-Cross-browser-Polyfills). + +* Use [Microformats](http://microformats.org/wiki/Main_Page) (via + [microdata](http://microformats.org/wiki/microdata)) for optimum search + results + [visibility](https://webmasters.googleblog.com/2009/05/introducing-rich-snippets.html). + +* If you're building a web app you may want [native style momentum scrolling in + iOS 5+](http://www.johanbrook.com/articles/native-style-momentum-scrolling-to-arrive-in-ios-5/) + using `-webkit-overflow-scrolling: touch`. + +* If you want to disable the translation prompt in Chrome or block Google + Translate from translating your web page, use [``](https://support.google.com/translate/?hl=en#2641276). + To disable translation for a particular section of the web page, add + [`class="notranslate"`](https://support.google.com/translate/?hl=en#2641276). + +* If you want to disable the automatic detection and formatting of possible + phone numbers in Safari on iOS, use [``](https://developer.apple.com/library/safari/documentation/AppleApplications/Reference/SafariHTMLRef/Articles/MetaTags.html/#//apple_ref/doc/uid/TP40008193-SW5). + +* Avoid development/stage websites "leaking" into SERPs (search engine results + page) by [implementing X-Robots-tag + headers](https://github.com/h5bp/html5-boilerplate/issues/804). + + +## News Feeds + +### RSS + +Have an RSS feed? Link to it here. Want to [learn how to write an RSS feed from +scratch](http://www.rssboard.org/rss-specification)? + +```html + +``` + +### Atom + +Atom is similar to RSS, and you might prefer to use it instead of or in +addition to it. [See what Atom's all +about](http://www.atomenabled.org/developers/syndication/). + +```html + +``` + +### Pingbacks + +Your server may be notified when another site links to yours. The href +attribute should contain the location of your pingback service. + +```html + +``` + +* High-level explanation: https://codex.wordpress.org/Introduction_to_Blogging#Pingbacks +* Step-by-step example case: http://www.hixie.ch/specs/pingback/pingback-1.0#TOC5 +* PHP pingback service: https://web.archive.org/web/20131211032834/http://blog.perplexedlabs.com/2009/07/15/xmlrpc-pingbacks-using-php/ + + + +## Social Networks + +### Facebook Open Graph data + +You can control the information that Facebook and others display when users +share your site. Below are just the most basic data points you might need. For +specific content types (including "website"), see [Facebook's built-in Open +Graph content +templates](https://developers.facebook.com/docs/opengraph/objects/builtin/). +Take full advantage of Facebook's support for complex data and activity by +following the [Open Graph +tutorial](https://developers.facebook.com/docs/opengraph/tutorial/). + +For a reference of Open Graph's markup and properties, you may check +[Facebook's Open Graph Protocol reference](http://ogp.me/). Finally, +you can validate your markup with the [Facebook Object +Debugger](https://developers.facebook.com/tools/debug/) (needs +registration to Facebook). + +```html + + + + + + + + +``` + +### Twitter Cards + +Twitter provides a snippet specification that serves a similar purpose to Open +Graph. In fact, Twitter will use Open Graph when Cards is not available. Note +that, as of this writing, Twitter requires that app developers activate Cards +on a per-domain basis. You can read more about the various snippet formats +and application process in the [official Twitter Cards +documentation](https://dev.twitter.com/docs/cards), and you can validate +your markup with the [Card validator](https://cards-dev.twitter.com/validator) +(needs registration to Twitter). + +```html + + + + + + + +``` + +### Google+ / Schema.org + +Google also provides a snippet specification that serves a similar +purpose to Facebook's Open Graph or Twitter Cards. While it helps you +to control information displayed on Google+, this metadata is a subset +of [schema.org's microdata vocabulary](https://schema.org/), which +covers many other schemas that can describe the content of your pages +to search engines. For this reason, this metadata is more generic for +SEO, notably for Google's search-engine, although this vocabulary is +also used by Microsoft, Pinterest or Yandex. + +You can validate your markup with the [Structured Data Testing +Tool](https://developers.google.com/structured-data/testing-tool/). +Also, please note that this markup requires to add attributes to your +top `html` tag. + +```html + + + + + + + + +``` + +## URLs + +### Canonical URL + +Signal to search engines and others "Use this URL for this page!" Useful when +parameters after a `#` or `?` is used to control the display state of a page. +`https://www.example.com/cart.html?shopping-cart-open=true` can be indexed as +the cleaner, more accurate `https://www.example.com/cart.html`. + +```html + +``` + +### Official shortlink + +Signal to the world "This is the shortened URL to use this page!" Poorly +supported at this time. Learn more by reading the [article about shortlinks on +the Microformats wiki](http://microformats.org/wiki/rel-shortlink). + +```html + +``` + +### Separate mobile URLs + +If you use separate URLs for desktop and mobile users, you should consider +helping search engine algorithms better understand the configuration on your +web site. + +This can be done by adding the following annotations in your HTML pages: + +* on the desktop page, add the `link rel="alternate"` tag pointing to the + corresponding mobile URL, e.g.: + + `` + +* on the mobile page, add the `link rel="canonical"` tag pointing to the + corresponding desktop URL, e.g.: + + `` + +For more information please see: + +* https://developers.google.com/webmasters/smartphone-sites/details#separateurls +* https://developers.google.com/webmasters/smartphone-sites/feature-phones + + +## Web Apps + +There are a couple of meta tags that provide information about a web app when +added to the Home Screen on iOS: + +* Adding `apple-mobile-web-app-capable` will make your web app chrome-less and +provide the default iOS app view. You can control the color scheme of the +default view by adding `apple-mobile-web-app-status-bar-style`. + +```html + + +``` + +* You can use `apple-mobile-web-app-title` to add a specific sites name for the +Home Screen icon. This works since iOS 6. + +```html + +``` + +For further information please read the [official +documentation](https://developer.apple.com/library/safari/#documentation/AppleApplications/Reference/SafariHTMLRef/Articles/MetaTags.html) +on Apple's site. + + +### Apple Touch Icons + +The Apple touch icons can be seen as the favicons of iOS devices. + +The main sizes of the Apple touch icons are: + +* `57×57px` – iPhone with @1x display and iPod Touch +* `72×72px` – iPad and iPad mini with @1x display running iOS ≤ 6 +* `76×76px` – iPad and iPad mini with @1x display running iOS ≥ 7 +* `114×114px` – iPhone with @2x display running iOS ≤ 6 +* `120×120px` – iPhone with @2x and @3x display running iOS ≥ 7 +* `144×144px` – iPad and iPad mini with @2x display running iOS ≤ 6 +* `152×152px` – iPad and iPad mini with @2x display running iOS 7 +* `180×180px` – iPad and iPad mini with @2x display running iOS 8 + +Displays meaning: + +* @1x - non-Retina +* @2x - Retina +* @3x - Retina HD + +More information about the displays of iOS devices can be found +[here](https://en.wikipedia.org/wiki/List_of_iOS_devices#Display). + +In most cases, one `180×180px` touch icon named `icon.png` +and including: + +```html + +``` + +in the `` of the page is enough. If you use art-direction and/or +want to have different content for each device, you can add more touch +icons as written above. + +For a more comprehensive overview, please refer to Mathias' [article on Touch +Icons](https://mathiasbynens.be/notes/touch-icons). + + +### Apple Touch Startup Image + +Apart from that it is possible to add start-up screens for web apps on iOS. This +basically works by defining `apple-touch-startup-image` with an according link +to the image. Since iOS devices have different screen resolutions it is +necessary to add media queries to detect which image to load. Here is an +example for a retina iPhone: + +```html + +``` + +However, it is possible to detect which start-up image to use with JavaScript. +The Mobile Boilerplate provides a useful function for this. Please see +[helpers.js](https://github.com/h5bp/mobile-boilerplate/blob/v4.1.0/js/helper.js#L336-L383) +for the implementation. + + +### Chrome Mobile web apps + +Chrome Mobile has a specific meta tag for making apps [installable to the +homescreen](https://developer.chrome.com/multidevice/android/installtohomescreen) +which tries to be a more generic replacement to Apple's proprietary meta tag: + +```html + +``` + +Same applies to the touch icons: + +```html + +``` + +### Theme Color + +You can add the [`theme-color` meta extension](https://html.spec.whatwg.org/multipage/semantics.html#meta-theme-color) +in the `` of your pages to suggest the color that browsers and +OSes should use if they customize the display of individual pages in +their UIs with varying colors. + +```html + +``` + +The `content` attribute extension can take any valid CSS color. + +Currently, the `theme-color` meta extension is supported by [Chrome 39+ +for Android Lollipop](https://developers.google.com/web/updates/2014/11/Support-for-theme-color-in-Chrome-39-for-Android). diff --git a/nesting/dist/doc/faq.md b/nesting/dist/doc/faq.md new file mode 100644 index 0000000..e0bf3e0 --- /dev/null +++ b/nesting/dist/doc/faq.md @@ -0,0 +1,47 @@ +[HTML5 Boilerplate homepage](https://html5boilerplate.com/) | [Documentation +table of contents](TOC.md) + +# Frequently asked questions + +* [Why is the Google Analytics code at the bottom? Google recommends it be + placed in the ``.](#why-is-the-google-analytics-code-at-the-bottom-google-recommends-it-be-placed-in-the-head) +* [How can I integrate Bootstrap with HTML5 + Boilerplate?](#how-can-i-integrate-bootstrap-with-html5-boilerplate) +* [Do I need to upgrade my site each time a new version of HTML5 Boilerplate is + released?](#do-i-need-to-upgrade-my-site-each-time-a-new-version-of-html5-boilerplate-is-released) +* [Where can I get help with support + questions?](#where-can-i-get-help-with-support-questions) + +--- + +### Why is the Google Analytics code at the bottom? Google recommends it be placed in the ``. + +The main advantage of placing it in the `` is that you will track the +user's `pageview` even if they leave the page before it has been fully loaded. + +Here's a handy quote from [Mathias Bynens](https://mathiasbynens.be/notes/async-analytics-snippet#comment-50) about our placement choice. +>I should point out that it’s Google — not me — recommending to place this +script before all other scripts in the document. The only real advantage is to +catch a pageView call if your page fails to load completely (for example, if +the user aborts loading, or quickly closes the page, etc.). Personally, I +wouldn’t count that as a page view, so I actually prefer to place this script +at the bottom, after all other scripts. This keeps all the scripts together and +reinforces that scripts at the bottom are the right move. (Usually I +concatenate and minify all my scripts into one .js file — the GA snippet being +the suffix.) + +### How can I integrate [Bootstrap](https://getbootstrap.com/) with HTML5 Boilerplate? + +Here's Nicolas Gallagher writing about how [HTML5 Boilerplate and Bootstrap complement each +other](https://www.quora.com/Is-Bootstrap-a-complement-or-an-alternative-to-HTML5-Boilerplate-or-viceversa/answer/Nicolas-Gallagher). + +### Do I need to upgrade my site each time a new version of HTML5 Boilerplate is released? + +No, same as you don't normally replace the foundation of a house once it +was built. However, there is nothing stopping you from trying to work in the +latest changes, but you'll have to assess the costs/benefits of doing so. + +### Where can I get help with support questions? + +Please ask for help on +[StackOverflow](https://stackoverflow.com/questions/tagged/html5boilerplate). diff --git a/nesting/dist/doc/html.md b/nesting/dist/doc/html.md new file mode 100644 index 0000000..54f07dc --- /dev/null +++ b/nesting/dist/doc/html.md @@ -0,0 +1,250 @@ +[HTML5 Boilerplate homepage](https://html5boilerplate.com/) | [Documentation +table of contents](TOC.md) + +# The HTML + +By default, HTML5 Boilerplate provides two `html` pages: + +* [`index.html`](#indexhtml) - a default HTML skeleton that should form the + basis of all pages on your website +* [`404.html`](#404html) - a placeholder 404 error page + + +## `index.html` + + +### The `no-js` Class + +The `no-js` class is provided in order to allow you to more easily and +explicitly add custom styles based on whether JavaScript is disabled +(`.no-js`) or enabled (`.js`). Using this technique also helps [avoid the +FOUC](https://www.paulirish.com/2009/avoiding-the-fouc-v3/). + + +## Language Attribute + +Please consider specifying the language of your content by adding a [value](http://www.iana.org/assignments/language-subtag-registry/language-subtag-registry) to the `lang` +attribute in the `` as in this example: + +```html + +``` + +### The order of the `` and `<meta>` tags + +The order in which the `<title>` and the `<meta>` tags are specified is +important because: + +1) the charset declaration (`<meta charset="utf-8">`): + + * must be included completely within the [first 1024 bytes of the + document](https://www.whatwg.org/specs/web-apps/current-work/multipage/semantics.html#charset) + + * should be specified as early as possible (before any content that could + be controlled by an attacker, such as a `<title>` element) in order to + avoid a potential [encoding-related security + issue](https://code.google.com/p/doctype-mirror/wiki/ArticleUtf7) in + Internet Explorer + +2) the meta tag for compatibility mode + (`<meta http-equiv="x-ua-compatible" content="ie=edge">`): + + * [needs to be included before all other tags except for the `<title>` and + the other `<meta>` + tags](https://msdn.microsoft.com/en-us/library/cc288325.aspx) + + +### `x-ua-compatible` + +Internet Explorer 8/9/10 support [document compatibility +modes](https://msdn.microsoft.com/en-us/library/cc288325.aspx) that affect the +way webpages are interpreted and displayed. Because of this, even if your site's +visitor is using, let's say, Internet Explorer 9, it's possible that IE will not +use the latest rendering engine, and instead, decide to render your page using +the Internet Explorer 5.5 rendering engine. + +Specifying the `x-ua-compatible` meta tag: + +```html +<meta http-equiv="x-ua-compatible" content="ie=edge"> +``` + +or sending the page with the following HTTP response header + +``` +X-UA-Compatible: IE=edge +``` + +will force Internet Explorer 8/9/10 to render the webpage in the highest +available mode in [the various cases when it may +not](https://hsivonen.fi/doctype/#ie8), and therefore, ensure that anyone +browsing your site is treated to the best possible user experience that +browser can offer. + +If possible, we recommend that you remove the `meta` tag and send only the +HTTP response header as the `meta` tag will not always work if your site is +served on a non-standard port, as Internet Explorer's preference option +`Display intranet sites in Compatibility View` is checked by default. + +If you are using Apache as your webserver, including the +[`.htaccess`](https://github.com/h5bp/server-configs-apache) file takes care of +the HTTP header. If you are using a different server, check out our [other +server config](https://github.com/h5bp/server-configs). + +Starting with Internet Explorer 11, [document modes are +deprecated](https://msdn.microsoft.com/library/bg182625.aspx#docmode). +If your business still relies on older web apps and services that were +designed for older versions of Internet Explorer, you might want to consider +enabling [Enterprise Mode](https://blogs.msdn.microsoft.com/ie/2014/04/02/stay-up-to-date-with-enterprise-mode-for-internet-explorer-11/) throughout your company. + + +## Meta Description + +The `description` meta tag provides a short description of the page. +In some situations this description is used as a part of the snippet +shown in the search results. + +```html +<meta name="description" content="This is a description"> +``` + + +## Mobile Viewport + +There are a few different options that you can use with the [`viewport` meta +tag](https://docs.google.com/present/view?id=dkx3qtm_22dxsrgcf4 "Viewport and +Media Queries - The Complete Idiot's Guide"). You can find out more in [the +Apple developer docs](https://developer.apple.com/library/safari/documentation/AppleApplications/Reference/SafariWebContent/UsingtheViewport/UsingtheViewport.html). +HTML5 Boilerplate comes with a simple setup that strikes a good balance for general use cases. + +```html +<meta name="viewport" content="width=device-width, initial-scale=1"> +``` + +## Web App Manifest +HTML5 Boilerplate includes a simple web app manifest file. + +The web app manifest is a simple JSON file that allows you to control how your +app appears on a device's home screen, what it looks like when it launches +in that context and what happens when it is launched. This allows for much greater +control over the UI of a saved site or web app on a mobile device. + +It's linked to from the HTML as follows: + +```html + <link rel="manifest" href="site.webmanifest"> +``` +Our [site.webmanifest](https://github.com/h5bp/html5-boilerplate/blob/master/src/site.webmanifest) contains a very skeletal "app" definition, just to show the basic usage. +You should fill this file out with [more information about your site or application](https://developer.mozilla.org/en-US/docs/Web/Manifest) + +## Favicons and Touch Icon + +The shortcut icons should be put in the root directory of your site. `favicon.ico` +is automatically picked up by browsers if it's placed in the root. HTML5 +Boilerplate comes with a default set of icons (include favicon and one Apple +Touch Icon) that you can use as a baseline to create your own. + +Please refer to the more detailed description in the [Extend section](extend.md) +of these docs. + +## The Content Area + +The central part of the boilerplate template is pretty much empty. This is +intentional, in order to make the boilerplate suitable for both web page and +web app development. + +### Browser Upgrade Prompt + +The main content area of the boilerplate includes a prompt to install an up to +date browser for users of IE 8 and lower. If you intended to support IE 8, then you +should remove the snippet of code. + +## Modernizr + +HTML5 Boilerplate uses a custom build of Modernizr. + +[Modernizr](https://modernizr.com/) is a JavaScript library which adds classes to +the `html` element based on the results of feature test and which ensures that +all browsers can make use of HTML5 elements (as it includes the HTML5 Shiv). +This allows you to target parts of your CSS and JavaScript based on the +features supported by a browser. + +Starting with version 3 Modernizr can be customized using the [modernizr-config.json](https://github.com/h5bp/html5-boilerplate/blob/master/modernizr-config.json) and the +[Modernizr command line utility](https://www.npmjs.com/package/modernizr-cli). + +## What About Polyfills? + +If you need to include [polyfills](https://remysharp.com/2010/10/08/what-is-a-polyfill) +in your project, you must make sure those load before any other JavaScript. If you're +using some polyfill CDN service, like [cdn.polyfill.io](https://cdn.polyfill.io/), +just put it before the other scripts in the bottom of the page: + +```html + <script src="js/vendor/modernizr-3.5.0.min.js"></script> + <script src="https://cdn.polyfill.io/v2/polyfill.min.js"></script> + <script src="https://code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script> + <script>window.jQuery || document.write('<script src="js/vendor/jquery-3.2.1.min.js"><\/script>')</script> + <script src="js/plugins.js"></script> + <script src="js/main.js"></script> +</body> +``` + +If you like to just include the polyfills yourself, you could include them in +`js/plugins.js`. When you have a bunch of polyfills to load in, you could +also create a `polyfills.js` file in the `js/vendor` directory or include the files +individually and combine them using a build tool. Always ensure that the polyfills +are all loaded before any other Javascript. + +There are some misconceptions about Modernizr and polyfills. It's important +to understand that Modernizr just handles feature checking, not polyfilling +itself. The only thing Modernizr does regarding polyfills is that the team +maintains [a huge list of cross Browser polyfills](https://github.com/Modernizr/Modernizr/wiki/HTML5-Cross-Browser-Polyfills). + +### jQuery CDN for jQuery + +The jQuery CDN version of the jQuery JavaScript library is referenced towards +the bottom of the page. A local fallback of jQuery is included for rare instances +when the CDN version might not be available, and to facilitate offline +development. + +The jQuery CDN version was chosen over other potential candidates +([like Google's Hosted Libraries](https://developers.google.com/speed/libraries/)) +because it's fast ([comparable or faster than Google by some +measures](https://www.cdnperf.com/#jsdelivr,cdnjs,google,yandex,microsoft,jquery,bootstrapcdn/https/90)) +and, (unlike Google's CDN) is available to China's hundreds of millions of internet users. +For many years we [chose](https://github.com/h5bp/html5-boilerplate/issues/1191) +the Google Hosted version over the jQuery CDN because it was available +over HTTPS (the jQuery CDN was not,) and it offered a better chance of +hitting the cache lottery owing to the popularity of the Google CDN. +The first issue is no longer valid and the second is far outweighed by +being able to serve jQuery to Chinese users. + +While the jQuery CDN is a strong default solution your site or application may +require a different configuration. Testing your site with services like +[WebPageTest](https://www.webpagetest.org/) and browser tools like +[PageSpeed Insights](https://developers.google.com/speed/pagespeed/insights/) will help you examine the real +world performance of your site and can show where you can optimize your specific +site or application. + +### Google Universal Analytics Tracking Code + +Finally, an optimized version of the Google Universal Analytics tracking code is +included. Google recommends that this script be placed at the top of the page. +Factors to consider: if you place this script at the top of the page, you’ll +be able to count users who don’t fully load the page, and you’ll incur the max +number of simultaneous connections of the browser. + +Further information: + +* [Optimizing the Google Universal Analytics + Snippet](https://mathiasbynens.be/notes/async-analytics-snippet#universal-analytics) +* [Introduction to + Analytics.js](https://developers.google.com/analytics/devguides/collection/analyticsjs/) +* [Google Analytics Demos & Tools](https://ga-dev-tools.appspot.com/) + +**N.B.** The Google Universal Analytics snippet is included by default mainly +because Google Analytics is [currently one of the most popular tracking +solutions](https://trends.builtwith.com/analytics/Google-Analytics) out there. +However, its usage isn't set in stone, and you SHOULD consider exploring the +[alternatives](https://en.wikipedia.org/wiki/List_of_web_analytics_software) +and use whatever suits your needs best! diff --git a/nesting/dist/doc/js.md b/nesting/dist/doc/js.md new file mode 100644 index 0000000..61f8461 --- /dev/null +++ b/nesting/dist/doc/js.md @@ -0,0 +1,36 @@ +[HTML5 Boilerplate homepage](https://html5boilerplate.com/) | [Documentation +table of contents](TOC.md) + +# The JavaScript + +Information about the default JavaScript included in the project. + +## main.js + +This file can be used to contain or reference your site/app JavaScript code. +If you're working on something more advanced you might replace this file +entirely. That's cool. + +## plugins.js + +This file can be used to contain all your plugins, such as jQuery plugins and +other 3rd party scripts for a simple site. + +One approach is to put jQuery plugins inside of a `(function($){ ... +})(jQuery);` closure to make sure they're in the jQuery namespace safety +blanket. Read more about [jQuery plugin +authoring](https://learn.jquery.com/plugins/#Getting_Started). + +By default the `plugins.js` file contains a small script to avoid `console` +errors in browsers that lack a `console`. The script will make sure that, if +a console method isn't available, that method will have the value of empty +function, thus, preventing the browser from throwing an error. + +## vendor + +This directory can be used to contain all 3rd party library code. + +Minified versions of the latest jQuery and Modernizr libraries are included by +default. You may wish to create your own [custom Modernizr +build with the online builder](https://www.modernizr.com/download/) or [command +line tool](https://modernizr.com/docs#command-line-config). diff --git a/nesting/dist/doc/misc.md b/nesting/dist/doc/misc.md new file mode 100644 index 0000000..74ca04f --- /dev/null +++ b/nesting/dist/doc/misc.md @@ -0,0 +1,158 @@ +[HTML5 Boilerplate homepage](https://html5boilerplate.com/) | [Documentation +table of contents](TOC.md) + +# Miscellaneous + +* [.gitignore](#gitignore) +* [.editorconfig](#editorconfig) +* [Server Configuration](#server-configuration) +* [robots.txt](#robotstxt) +* [browserconfig.xml](#browserconfigxml) + +-- + +## .gitignore + +HTML5 Boilerplate includes a basic project-level `.gitignore`. This should +primarily be used to avoid certain project-level files and directories from +being kept under source control. Different development-environments will +benefit from different collections of ignores. + +OS-specific and editor-specific files should be ignored using a "global +ignore" that applies to all repositories on your system. + +For example, add the following to your `~/.gitconfig`, where the `.gitignore` +in your HOME directory contains the files and directories you'd like to +globally ignore: + +```gitignore +[core] + excludesfile = ~/.gitignore +``` + +* More on global ignores: https://help.github.com/articles/ignoring-files/ +* Comprehensive set of ignores on GitHub: https://github.com/github/gitignore + + +## .editorconfig + +The `.editorconfig` file is provided in order to encourage and help you and +your team define and maintain consistent coding styles between different +editors and IDEs. + +By default, `.editorconfig` includes some basic +[properties](http://editorconfig.org/#supported-properties) that reflect the +coding styles from the files provided by default, but you can easily change +them to better suit your needs. + +In order for your editor/IDE to apply the +[properties](http://editorconfig.org/#supported-properties) from the +`.editorconfig` file, you may need to [install a +plugin]( http://editorconfig.org/#download). + +__N.B.__ If you aren't using the server configurations provided by HTML5 +Boilerplate, we highly encourage you to configure your server to block +access to `.editorconfig` files, as they can disclose sensitive information! + +For more details, please refer to the [EditorConfig +project](http://editorconfig.org/). + + +## Server Configuration + +H5BP includes a [`.htaccess`](#htaccess) file for the [Apache HTTP +server](https://httpd.apache.org/docs/). If you are not using Apache +as your web server, then you are encouraged to download a +[server configuration](https://github.com/h5bp/server-configs) that +corresponds to your web server and environment. + +A `.htaccess` (hypertext access) file is an [Apache HTTP server +configuration file](https://github.com/h5bp/server-configs-apache). +The `.htaccess` file is mostly used for: + +* Rewriting URLs +* Controlling cache +* Authentication +* Server-side includes +* Redirects +* Gzipping + +If you have access to the main server configuration file (usually called +`httpd.conf`), you should add the logic from the `.htaccess` file in, for +example, a <Directory> section in the main configuration file. This is usually +the recommended way, as using .htaccess files slows down Apache! + +To enable Apache modules locally, please see: +https://github.com/h5bp/server-configs-apache/wiki/How-to-enable-Apache-modules. + +In the repo the `.htaccess` is used for: + +* Allowing cross-origin access to web fonts +* CORS header for images when browsers request it +* Enable `404.html` as 404 error document +* Making the website experience better for IE users better +* Media UTF-8 as character encoding for `text/html` and `text/plain` +* Enabling the rewrite URLs engine +* Forcing or removing the `www.` at the begin of a URL +* It blocks access to directories without a default document +* It blocks access to files that can expose sensitive information. +* It reduces MIME type security risks +* It forces compressing (gzipping) +* It tells the browser whether they should request a specific file from the + server or whether they should grab it from the browser's cache + +When using `.htaccess` we recommend reading all inline comments (the rules after +a `#`) in the file once. There is a bunch of optional stuff in it. + +If you want to know more about the `.htaccess` file check out the +[Apache HTTP server docs](https://httpd.apache.org/docs/) or more +specifically the [htaccess +section](https://httpd.apache.org/docs/current/howto/htaccess.html). + +Notice that the original repo for the `.htaccess` file is [this +one](https://github.com/h5bp/server-configs-apache). + + +## robots.txt + +The `robots.txt` file is used to give instructions to web robots on what can +be crawled from the website. + +By default, the file provided by this project includes the next two lines: + + * `User-agent: *` - the following rules apply to all web robots + * `Disallow:` - everything on the website is allowed to be crawled + +If you want to disallow certain pages you will need to specify the path in a +`Disallow` directive (e.g.: `Disallow: /path`) or, if you want to disallow +crawling of all content, use `Disallow: /`. + +The `/robots.txt` file is not intended for access control, so don't try to +use it as such. Think of it as a "No Entry" sign, rather than a locked door. +URLs disallowed by the `robots.txt` file might still be indexed without being +crawled, and the content from within the `robots.txt` file can be viewed by +anyone, potentially disclosing the location of your private content! So, if +you want to block access to private content, use proper authentication instead. + +For more information about `robots.txt`, please see: + + * [robotstxt.org](http://www.robotstxt.org/) + * [How Google handles the `robots.txt` file](https://developers.google.com/webmasters/control-crawl-index/docs/robots_txt) + + +## browserconfig.xml + +The `browserconfig.xml` file is used to customize the tile displayed when users +pin your site to the Windows 8.1 start screen. In there you can define custom +tile colors, custom images or even [live tiles](https://msdn.microsoft.com/library/dn455106.aspx#CreatingLiveTiles). + +By default, the file points to 2 placeholder tile images: + +* `tile.png` (558x558px): used for `Small`, `Medium` and `Large` tiles. + This image resizes automatically when necessary. +* `tile-wide.png` (558x270px): user for `Wide` tiles. + +Notice that IE11 uses the same images when adding a site to the `favorites`. + +For more in-depth information about the `browserconfig.xml` file, please +see [MSDN](https://msdn.microsoft.com/library/dn320426.aspx). diff --git a/nesting/dist/doc/usage.md b/nesting/dist/doc/usage.md new file mode 100644 index 0000000..3e3e70a --- /dev/null +++ b/nesting/dist/doc/usage.md @@ -0,0 +1,130 @@ +[HTML5 Boilerplate homepage](https://html5boilerplate.com/) | [Documentation +table of contents](TOC.md) + +# Usage + +The most basic usage of HTML5 Boilerplate is to create a static site or simple +app. Once you've downloaded or cloned the project, that process looks something +like this: + +1. Set up the basic structure of the site. +2. Add some content, style, and functionality. +3. Run your site locally to see how it looks. +4. Deploy your site. + +Cool, right? _It is_. That said, the smart defaults, baseline elements, default +attribute values and various other utilities that HTML5 Boilerplate offers can +serve as the foundation for whatever you're interested in building. + +Even the basic use-case of a simple static site can be enhanced by manipulating +the code through an automated build process. Moving up in complexity HTML5 +Boilerplate can be be integrated with whatever front-end framework, CMS or +e-commerce platform you're working with. Mix-and-match to your heart's content. +Use what you need (toss it in a blender if you need to) and discard the rest. +HTML5 Boilerplate is a starting point, not a destination. + +## Basic structure + +A basic HTML5 Boilerplate site initially looks something like this: + +``` +. +├── css +│ ├── main.css +│ └── normalize.css +├── doc +├── img +├── js +│ ├── main.js +│ ├── plugins.js +│ └── vendor +│ ├── jquery.min.js +│ └── modernizr.min.js +├── .editorconfig +├── .htaccess +├── 404.html +├── browserconfig.xml +├── favicon.ico +├── humans.txt +├── icon.png +├── index.html +├── robots.txt +├── site.webmanifest +├── tile.png +└── tile-wide.png +``` + +What follows is a general overview of each major part and how to use them. + +### css + +This directory should contain all your project's CSS files. It includes some +initial CSS to help get you started from a solid foundation. [About the +CSS](css.md). + +### doc + +This directory contains all the HTML5 Boilerplate documentation. You can use it +as the location and basis for your own project's documentation. + +### js + +This directory should contain all your project's JS files. Libraries, plugins, +and custom code can all be included here. It includes some initial JS to help +get you started. [About the JavaScript](js.md). + +### .htaccess + +The default web server configs are for Apache. For more information, please +refer to the [Apache Server Configs +repository](https://github.com/h5bp/server-configs-apache). + +Host your site on a server other than Apache? You're likely to find the +corresponding server configs project listed in our [Server Configs +](https://github.com/h5bp/server-configs/blob/master/README.md) repository. + +### 404.html + +A helpful custom 404 to get you started. + +### browserconfig.xml + +This file contains all settings regarding custom tiles for IE11 and Edge. + +For more info on this topic, please refer to +[MSDN](https://msdn.microsoft.com/library/dn455106.aspx). + +### .editorconfig + +The `.editorconfig` file is provided in order to encourage and help you and +your team to maintain consistent coding styles between different +editors and IDEs. [Read more about the `.editorconfig` file](misc.md#editorconfig). + +### index.html + +This is the default HTML skeleton that should form the basis of all pages on +your site. If you are using a server-side templating framework, then you will +need to integrate this starting HTML with your setup. + +Make sure that you update the URLs for the referenced CSS and JavaScript if you +modify the directory structure at all. + +If you are using Google Universal Analytics, make sure that you edit the +corresponding snippet at the bottom to include your analytics ID. + +### humans.txt + +Edit this file to include the team that worked on your site/app, and the +technology powering it. + +### robots.txt + +Edit this file to include any pages you need hidden from search engines. + +### Icons + +Replace the default `favicon.ico`, `tile.png`, `tile-wide.png` and Apple +Touch Icon with your own. + +If you want to use different Apple Touch Icons for different resolutions please +refer to the [according documentation](extend.md#apple-touch-icons). diff --git a/nesting/dist/favicon.ico b/nesting/dist/favicon.ico new file mode 100644 index 0000000000000000000000000000000000000000..be74abd69ad6a32de7375df13cab9354798e328f GIT binary patch literal 766 zcmc(dze~eV5XUd2fg&jH87YDYDQKxq1{4b-_ydP-wqS9vgGh17QXQQAwOE{VaBvi* zmu^z9t({y-&1ey<?*19x`_a%0;^>8Y_x;?x+`BviV9;aRjMgZ8M*!jgkRrFqSI9;F zHyfX@Az|AvVmn~YWWZP`0&JWEY~BFm?*Vq}VD7&_%x%MP$p`D`4JMC!K|B7pt?Mmp zUJAB7rxMXS6=!P+AtLU9V)J#61WPxwipRXCHO{BJ`l{m53#=t97a!znv~vfmr|AaP zRGIT7#0FyJy3Z*hL{GQp-0TRhX8UzZ)+>%?mK0^goaX4Q;x<h|7I8a@t8#9Z`A~@1 zIx{#+`h7(7bA0+s7#-k=_?cTQZjqG{+al%<xj`*i0llsi@&x*V=JS=7GQ@hVV0w`- td#$W2=*99o&LFePcYQf3%L?7WGUv;WVIDdObG#I0%L#Kp!H@7y;s@Y5ipBr{ literal 0 HcmV?d00001 diff --git a/nesting/dist/humans.txt b/nesting/dist/humans.txt new file mode 100644 index 0000000..8d2330f --- /dev/null +++ b/nesting/dist/humans.txt @@ -0,0 +1,15 @@ +# humanstxt.org/ +# The humans responsible & technology colophon + +# TEAM + + <name> -- <role> -- <twitter> + +# THANKS + + <name> + +# TECHNOLOGY COLOPHON + + CSS3, HTML5 + Apache Server Configs, jQuery, Modernizr, Normalize.css diff --git a/nesting/dist/icon.png b/nesting/dist/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..8a42581d4a2a2a28bee1888835d21ffe4d6378d0 GIT binary patch literal 4029 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 literal 0 HcmV?d00001 diff --git a/nesting/dist/img/.gitignore b/nesting/dist/img/.gitignore new file mode 100644 index 0000000..e69de29 diff --git a/nesting/dist/index.html b/nesting/dist/index.html new file mode 100644 index 0000000..0bad552 --- /dev/null +++ b/nesting/dist/index.html @@ -0,0 +1,37 @@ +<!doctype html> +<html class="no-js" lang=""> + <head> + <meta charset="utf-8"> + <meta http-equiv="x-ua-compatible" content="ie=edge"> + <title> + + + + + + + + + + + + + + +

Hello world! This is HTML5 Boilerplate.

+ + + + + + + + + + + diff --git a/nesting/dist/js/main.js b/nesting/dist/js/main.js new file mode 100644 index 0000000..e69de29 diff --git a/nesting/dist/js/plugins.js b/nesting/dist/js/plugins.js new file mode 100644 index 0000000..f887480 --- /dev/null +++ b/nesting/dist/js/plugins.js @@ -0,0 +1,24 @@ +// Avoid `console` errors in browsers that lack a console. +(function() { + var method; + var noop = function () {}; + var methods = [ + 'assert', 'clear', 'count', 'debug', 'dir', 'dirxml', 'error', + 'exception', 'group', 'groupCollapsed', 'groupEnd', 'info', 'log', + 'markTimeline', 'profile', 'profileEnd', 'table', 'time', 'timeEnd', + 'timeline', 'timelineEnd', 'timeStamp', 'trace', 'warn' + ]; + var length = methods.length; + var console = (window.console = window.console || {}); + + while (length--) { + method = methods[length]; + + // Only stub undefined methods. + if (!console[method]) { + console[method] = noop; + } + } +}()); + +// Place any jQuery/helper plugins in here. diff --git a/nesting/dist/js/vendor/jquery-3.2.1.min.js b/nesting/dist/js/vendor/jquery-3.2.1.min.js new file mode 100644 index 0000000..644d35e --- /dev/null +++ b/nesting/dist/js/vendor/jquery-3.2.1.min.js @@ -0,0 +1,4 @@ +/*! jQuery v3.2.1 | (c) JS Foundation and other contributors | jquery.org/license */ +!function(a,b){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=a.document?b(a,!0):function(a){if(!a.document)throw new Error("jQuery requires a window with a document");return b(a)}:b(a)}("undefined"!=typeof window?window:this,function(a,b){"use strict";var c=[],d=a.document,e=Object.getPrototypeOf,f=c.slice,g=c.concat,h=c.push,i=c.indexOf,j={},k=j.toString,l=j.hasOwnProperty,m=l.toString,n=m.call(Object),o={};function p(a,b){b=b||d;var c=b.createElement("script");c.text=a,b.head.appendChild(c).parentNode.removeChild(c)}var q="3.2.1",r=function(a,b){return new r.fn.init(a,b)},s=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,t=/^-ms-/,u=/-([a-z])/g,v=function(a,b){return b.toUpperCase()};r.fn=r.prototype={jquery:q,constructor:r,length:0,toArray:function(){return f.call(this)},get:function(a){return null==a?f.call(this):a<0?this[a+this.length]:this[a]},pushStack:function(a){var b=r.merge(this.constructor(),a);return b.prevObject=this,b},each:function(a){return r.each(this,a)},map:function(a){return this.pushStack(r.map(this,function(b,c){return a.call(b,c,b)}))},slice:function(){return this.pushStack(f.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(a){var b=this.length,c=+a+(a<0?b:0);return this.pushStack(c>=0&&c0&&b-1 in a)}var x=function(a){var b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u="sizzle"+1*new Date,v=a.document,w=0,x=0,y=ha(),z=ha(),A=ha(),B=function(a,b){return a===b&&(l=!0),0},C={}.hasOwnProperty,D=[],E=D.pop,F=D.push,G=D.push,H=D.slice,I=function(a,b){for(var c=0,d=a.length;c+~]|"+K+")"+K+"*"),S=new RegExp("="+K+"*([^\\]'\"]*?)"+K+"*\\]","g"),T=new RegExp(N),U=new RegExp("^"+L+"$"),V={ID:new RegExp("^#("+L+")"),CLASS:new RegExp("^\\.("+L+")"),TAG:new RegExp("^("+L+"|[*])"),ATTR:new RegExp("^"+M),PSEUDO:new RegExp("^"+N),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+K+"*(even|odd|(([+-]|)(\\d*)n|)"+K+"*(?:([+-]|)"+K+"*(\\d+)|))"+K+"*\\)|)","i"),bool:new RegExp("^(?:"+J+")$","i"),needsContext:new RegExp("^"+K+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+K+"*((?:-\\d)?\\d*)"+K+"*\\)|)(?=[^-]|$)","i")},W=/^(?:input|select|textarea|button)$/i,X=/^h\d$/i,Y=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,$=/[+~]/,_=new RegExp("\\\\([\\da-f]{1,6}"+K+"?|("+K+")|.)","ig"),aa=function(a,b,c){var d="0x"+b-65536;return d!==d||c?b:d<0?String.fromCharCode(d+65536):String.fromCharCode(d>>10|55296,1023&d|56320)},ba=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ca=function(a,b){return b?"\0"===a?"\ufffd":a.slice(0,-1)+"\\"+a.charCodeAt(a.length-1).toString(16)+" ":"\\"+a},da=function(){m()},ea=ta(function(a){return a.disabled===!0&&("form"in a||"label"in a)},{dir:"parentNode",next:"legend"});try{G.apply(D=H.call(v.childNodes),v.childNodes),D[v.childNodes.length].nodeType}catch(fa){G={apply:D.length?function(a,b){F.apply(a,H.call(b))}:function(a,b){var c=a.length,d=0;while(a[c++]=b[d++]);a.length=c-1}}}function ga(a,b,d,e){var f,h,j,k,l,o,r,s=b&&b.ownerDocument,w=b?b.nodeType:9;if(d=d||[],"string"!=typeof a||!a||1!==w&&9!==w&&11!==w)return d;if(!e&&((b?b.ownerDocument||b:v)!==n&&m(b),b=b||n,p)){if(11!==w&&(l=Z.exec(a)))if(f=l[1]){if(9===w){if(!(j=b.getElementById(f)))return d;if(j.id===f)return d.push(j),d}else if(s&&(j=s.getElementById(f))&&t(b,j)&&j.id===f)return d.push(j),d}else{if(l[2])return G.apply(d,b.getElementsByTagName(a)),d;if((f=l[3])&&c.getElementsByClassName&&b.getElementsByClassName)return G.apply(d,b.getElementsByClassName(f)),d}if(c.qsa&&!A[a+" "]&&(!q||!q.test(a))){if(1!==w)s=b,r=a;else if("object"!==b.nodeName.toLowerCase()){(k=b.getAttribute("id"))?k=k.replace(ba,ca):b.setAttribute("id",k=u),o=g(a),h=o.length;while(h--)o[h]="#"+k+" "+sa(o[h]);r=o.join(","),s=$.test(a)&&qa(b.parentNode)||b}if(r)try{return G.apply(d,s.querySelectorAll(r)),d}catch(x){}finally{k===u&&b.removeAttribute("id")}}}return i(a.replace(P,"$1"),b,d,e)}function ha(){var a=[];function b(c,e){return a.push(c+" ")>d.cacheLength&&delete b[a.shift()],b[c+" "]=e}return b}function ia(a){return a[u]=!0,a}function ja(a){var b=n.createElement("fieldset");try{return!!a(b)}catch(c){return!1}finally{b.parentNode&&b.parentNode.removeChild(b),b=null}}function ka(a,b){var c=a.split("|"),e=c.length;while(e--)d.attrHandle[c[e]]=b}function la(a,b){var c=b&&a,d=c&&1===a.nodeType&&1===b.nodeType&&a.sourceIndex-b.sourceIndex;if(d)return d;if(c)while(c=c.nextSibling)if(c===b)return-1;return a?1:-1}function ma(a){return function(b){var c=b.nodeName.toLowerCase();return"input"===c&&b.type===a}}function na(a){return function(b){var c=b.nodeName.toLowerCase();return("input"===c||"button"===c)&&b.type===a}}function oa(a){return function(b){return"form"in b?b.parentNode&&b.disabled===!1?"label"in b?"label"in b.parentNode?b.parentNode.disabled===a:b.disabled===a:b.isDisabled===a||b.isDisabled!==!a&&ea(b)===a:b.disabled===a:"label"in b&&b.disabled===a}}function pa(a){return ia(function(b){return b=+b,ia(function(c,d){var e,f=a([],c.length,b),g=f.length;while(g--)c[e=f[g]]&&(c[e]=!(d[e]=c[e]))})})}function qa(a){return a&&"undefined"!=typeof a.getElementsByTagName&&a}c=ga.support={},f=ga.isXML=function(a){var b=a&&(a.ownerDocument||a).documentElement;return!!b&&"HTML"!==b.nodeName},m=ga.setDocument=function(a){var b,e,g=a?a.ownerDocument||a:v;return g!==n&&9===g.nodeType&&g.documentElement?(n=g,o=n.documentElement,p=!f(n),v!==n&&(e=n.defaultView)&&e.top!==e&&(e.addEventListener?e.addEventListener("unload",da,!1):e.attachEvent&&e.attachEvent("onunload",da)),c.attributes=ja(function(a){return a.className="i",!a.getAttribute("className")}),c.getElementsByTagName=ja(function(a){return a.appendChild(n.createComment("")),!a.getElementsByTagName("*").length}),c.getElementsByClassName=Y.test(n.getElementsByClassName),c.getById=ja(function(a){return o.appendChild(a).id=u,!n.getElementsByName||!n.getElementsByName(u).length}),c.getById?(d.filter.ID=function(a){var b=a.replace(_,aa);return function(a){return a.getAttribute("id")===b}},d.find.ID=function(a,b){if("undefined"!=typeof b.getElementById&&p){var c=b.getElementById(a);return c?[c]:[]}}):(d.filter.ID=function(a){var b=a.replace(_,aa);return function(a){var c="undefined"!=typeof a.getAttributeNode&&a.getAttributeNode("id");return c&&c.value===b}},d.find.ID=function(a,b){if("undefined"!=typeof b.getElementById&&p){var c,d,e,f=b.getElementById(a);if(f){if(c=f.getAttributeNode("id"),c&&c.value===a)return[f];e=b.getElementsByName(a),d=0;while(f=e[d++])if(c=f.getAttributeNode("id"),c&&c.value===a)return[f]}return[]}}),d.find.TAG=c.getElementsByTagName?function(a,b){return"undefined"!=typeof b.getElementsByTagName?b.getElementsByTagName(a):c.qsa?b.querySelectorAll(a):void 0}:function(a,b){var c,d=[],e=0,f=b.getElementsByTagName(a);if("*"===a){while(c=f[e++])1===c.nodeType&&d.push(c);return d}return f},d.find.CLASS=c.getElementsByClassName&&function(a,b){if("undefined"!=typeof b.getElementsByClassName&&p)return b.getElementsByClassName(a)},r=[],q=[],(c.qsa=Y.test(n.querySelectorAll))&&(ja(function(a){o.appendChild(a).innerHTML="",a.querySelectorAll("[msallowcapture^='']").length&&q.push("[*^$]="+K+"*(?:''|\"\")"),a.querySelectorAll("[selected]").length||q.push("\\["+K+"*(?:value|"+J+")"),a.querySelectorAll("[id~="+u+"-]").length||q.push("~="),a.querySelectorAll(":checked").length||q.push(":checked"),a.querySelectorAll("a#"+u+"+*").length||q.push(".#.+[+~]")}),ja(function(a){a.innerHTML="";var b=n.createElement("input");b.setAttribute("type","hidden"),a.appendChild(b).setAttribute("name","D"),a.querySelectorAll("[name=d]").length&&q.push("name"+K+"*[*^$|!~]?="),2!==a.querySelectorAll(":enabled").length&&q.push(":enabled",":disabled"),o.appendChild(a).disabled=!0,2!==a.querySelectorAll(":disabled").length&&q.push(":enabled",":disabled"),a.querySelectorAll("*,:x"),q.push(",.*:")})),(c.matchesSelector=Y.test(s=o.matches||o.webkitMatchesSelector||o.mozMatchesSelector||o.oMatchesSelector||o.msMatchesSelector))&&ja(function(a){c.disconnectedMatch=s.call(a,"*"),s.call(a,"[s!='']:x"),r.push("!=",N)}),q=q.length&&new RegExp(q.join("|")),r=r.length&&new RegExp(r.join("|")),b=Y.test(o.compareDocumentPosition),t=b||Y.test(o.contains)?function(a,b){var c=9===a.nodeType?a.documentElement:a,d=b&&b.parentNode;return a===d||!(!d||1!==d.nodeType||!(c.contains?c.contains(d):a.compareDocumentPosition&&16&a.compareDocumentPosition(d)))}:function(a,b){if(b)while(b=b.parentNode)if(b===a)return!0;return!1},B=b?function(a,b){if(a===b)return l=!0,0;var d=!a.compareDocumentPosition-!b.compareDocumentPosition;return d?d:(d=(a.ownerDocument||a)===(b.ownerDocument||b)?a.compareDocumentPosition(b):1,1&d||!c.sortDetached&&b.compareDocumentPosition(a)===d?a===n||a.ownerDocument===v&&t(v,a)?-1:b===n||b.ownerDocument===v&&t(v,b)?1:k?I(k,a)-I(k,b):0:4&d?-1:1)}:function(a,b){if(a===b)return l=!0,0;var c,d=0,e=a.parentNode,f=b.parentNode,g=[a],h=[b];if(!e||!f)return a===n?-1:b===n?1:e?-1:f?1:k?I(k,a)-I(k,b):0;if(e===f)return la(a,b);c=a;while(c=c.parentNode)g.unshift(c);c=b;while(c=c.parentNode)h.unshift(c);while(g[d]===h[d])d++;return d?la(g[d],h[d]):g[d]===v?-1:h[d]===v?1:0},n):n},ga.matches=function(a,b){return ga(a,null,null,b)},ga.matchesSelector=function(a,b){if((a.ownerDocument||a)!==n&&m(a),b=b.replace(S,"='$1']"),c.matchesSelector&&p&&!A[b+" "]&&(!r||!r.test(b))&&(!q||!q.test(b)))try{var d=s.call(a,b);if(d||c.disconnectedMatch||a.document&&11!==a.document.nodeType)return d}catch(e){}return ga(b,n,null,[a]).length>0},ga.contains=function(a,b){return(a.ownerDocument||a)!==n&&m(a),t(a,b)},ga.attr=function(a,b){(a.ownerDocument||a)!==n&&m(a);var e=d.attrHandle[b.toLowerCase()],f=e&&C.call(d.attrHandle,b.toLowerCase())?e(a,b,!p):void 0;return void 0!==f?f:c.attributes||!p?a.getAttribute(b):(f=a.getAttributeNode(b))&&f.specified?f.value:null},ga.escape=function(a){return(a+"").replace(ba,ca)},ga.error=function(a){throw new Error("Syntax error, unrecognized expression: "+a)},ga.uniqueSort=function(a){var b,d=[],e=0,f=0;if(l=!c.detectDuplicates,k=!c.sortStable&&a.slice(0),a.sort(B),l){while(b=a[f++])b===a[f]&&(e=d.push(f));while(e--)a.splice(d[e],1)}return k=null,a},e=ga.getText=function(a){var b,c="",d=0,f=a.nodeType;if(f){if(1===f||9===f||11===f){if("string"==typeof a.textContent)return a.textContent;for(a=a.firstChild;a;a=a.nextSibling)c+=e(a)}else if(3===f||4===f)return a.nodeValue}else while(b=a[d++])c+=e(b);return c},d=ga.selectors={cacheLength:50,createPseudo:ia,match:V,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(a){return a[1]=a[1].replace(_,aa),a[3]=(a[3]||a[4]||a[5]||"").replace(_,aa),"~="===a[2]&&(a[3]=" "+a[3]+" "),a.slice(0,4)},CHILD:function(a){return a[1]=a[1].toLowerCase(),"nth"===a[1].slice(0,3)?(a[3]||ga.error(a[0]),a[4]=+(a[4]?a[5]+(a[6]||1):2*("even"===a[3]||"odd"===a[3])),a[5]=+(a[7]+a[8]||"odd"===a[3])):a[3]&&ga.error(a[0]),a},PSEUDO:function(a){var b,c=!a[6]&&a[2];return V.CHILD.test(a[0])?null:(a[3]?a[2]=a[4]||a[5]||"":c&&T.test(c)&&(b=g(c,!0))&&(b=c.indexOf(")",c.length-b)-c.length)&&(a[0]=a[0].slice(0,b),a[2]=c.slice(0,b)),a.slice(0,3))}},filter:{TAG:function(a){var b=a.replace(_,aa).toLowerCase();return"*"===a?function(){return!0}:function(a){return a.nodeName&&a.nodeName.toLowerCase()===b}},CLASS:function(a){var b=y[a+" "];return b||(b=new RegExp("(^|"+K+")"+a+"("+K+"|$)"))&&y(a,function(a){return b.test("string"==typeof a.className&&a.className||"undefined"!=typeof a.getAttribute&&a.getAttribute("class")||"")})},ATTR:function(a,b,c){return function(d){var e=ga.attr(d,a);return null==e?"!="===b:!b||(e+="","="===b?e===c:"!="===b?e!==c:"^="===b?c&&0===e.indexOf(c):"*="===b?c&&e.indexOf(c)>-1:"$="===b?c&&e.slice(-c.length)===c:"~="===b?(" "+e.replace(O," ")+" ").indexOf(c)>-1:"|="===b&&(e===c||e.slice(0,c.length+1)===c+"-"))}},CHILD:function(a,b,c,d,e){var f="nth"!==a.slice(0,3),g="last"!==a.slice(-4),h="of-type"===b;return 1===d&&0===e?function(a){return!!a.parentNode}:function(b,c,i){var j,k,l,m,n,o,p=f!==g?"nextSibling":"previousSibling",q=b.parentNode,r=h&&b.nodeName.toLowerCase(),s=!i&&!h,t=!1;if(q){if(f){while(p){m=b;while(m=m[p])if(h?m.nodeName.toLowerCase()===r:1===m.nodeType)return!1;o=p="only"===a&&!o&&"nextSibling"}return!0}if(o=[g?q.firstChild:q.lastChild],g&&s){m=q,l=m[u]||(m[u]={}),k=l[m.uniqueID]||(l[m.uniqueID]={}),j=k[a]||[],n=j[0]===w&&j[1],t=n&&j[2],m=n&&q.childNodes[n];while(m=++n&&m&&m[p]||(t=n=0)||o.pop())if(1===m.nodeType&&++t&&m===b){k[a]=[w,n,t];break}}else if(s&&(m=b,l=m[u]||(m[u]={}),k=l[m.uniqueID]||(l[m.uniqueID]={}),j=k[a]||[],n=j[0]===w&&j[1],t=n),t===!1)while(m=++n&&m&&m[p]||(t=n=0)||o.pop())if((h?m.nodeName.toLowerCase()===r:1===m.nodeType)&&++t&&(s&&(l=m[u]||(m[u]={}),k=l[m.uniqueID]||(l[m.uniqueID]={}),k[a]=[w,t]),m===b))break;return t-=e,t===d||t%d===0&&t/d>=0}}},PSEUDO:function(a,b){var c,e=d.pseudos[a]||d.setFilters[a.toLowerCase()]||ga.error("unsupported pseudo: "+a);return e[u]?e(b):e.length>1?(c=[a,a,"",b],d.setFilters.hasOwnProperty(a.toLowerCase())?ia(function(a,c){var d,f=e(a,b),g=f.length;while(g--)d=I(a,f[g]),a[d]=!(c[d]=f[g])}):function(a){return e(a,0,c)}):e}},pseudos:{not:ia(function(a){var b=[],c=[],d=h(a.replace(P,"$1"));return d[u]?ia(function(a,b,c,e){var f,g=d(a,null,e,[]),h=a.length;while(h--)(f=g[h])&&(a[h]=!(b[h]=f))}):function(a,e,f){return b[0]=a,d(b,null,f,c),b[0]=null,!c.pop()}}),has:ia(function(a){return function(b){return ga(a,b).length>0}}),contains:ia(function(a){return a=a.replace(_,aa),function(b){return(b.textContent||b.innerText||e(b)).indexOf(a)>-1}}),lang:ia(function(a){return U.test(a||"")||ga.error("unsupported lang: "+a),a=a.replace(_,aa).toLowerCase(),function(b){var c;do if(c=p?b.lang:b.getAttribute("xml:lang")||b.getAttribute("lang"))return c=c.toLowerCase(),c===a||0===c.indexOf(a+"-");while((b=b.parentNode)&&1===b.nodeType);return!1}}),target:function(b){var c=a.location&&a.location.hash;return c&&c.slice(1)===b.id},root:function(a){return a===o},focus:function(a){return a===n.activeElement&&(!n.hasFocus||n.hasFocus())&&!!(a.type||a.href||~a.tabIndex)},enabled:oa(!1),disabled:oa(!0),checked:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&!!a.checked||"option"===b&&!!a.selected},selected:function(a){return a.parentNode&&a.parentNode.selectedIndex,a.selected===!0},empty:function(a){for(a=a.firstChild;a;a=a.nextSibling)if(a.nodeType<6)return!1;return!0},parent:function(a){return!d.pseudos.empty(a)},header:function(a){return X.test(a.nodeName)},input:function(a){return W.test(a.nodeName)},button:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&"button"===a.type||"button"===b},text:function(a){var b;return"input"===a.nodeName.toLowerCase()&&"text"===a.type&&(null==(b=a.getAttribute("type"))||"text"===b.toLowerCase())},first:pa(function(){return[0]}),last:pa(function(a,b){return[b-1]}),eq:pa(function(a,b,c){return[c<0?c+b:c]}),even:pa(function(a,b){for(var c=0;c=0;)a.push(d);return a}),gt:pa(function(a,b,c){for(var d=c<0?c+b:c;++d1?function(b,c,d){var e=a.length;while(e--)if(!a[e](b,c,d))return!1;return!0}:a[0]}function va(a,b,c){for(var d=0,e=b.length;d-1&&(f[j]=!(g[j]=l))}}else r=wa(r===g?r.splice(o,r.length):r),e?e(null,g,r,i):G.apply(g,r)})}function ya(a){for(var b,c,e,f=a.length,g=d.relative[a[0].type],h=g||d.relative[" "],i=g?1:0,k=ta(function(a){return a===b},h,!0),l=ta(function(a){return I(b,a)>-1},h,!0),m=[function(a,c,d){var e=!g&&(d||c!==j)||((b=c).nodeType?k(a,c,d):l(a,c,d));return b=null,e}];i1&&ua(m),i>1&&sa(a.slice(0,i-1).concat({value:" "===a[i-2].type?"*":""})).replace(P,"$1"),c,i0,e=a.length>0,f=function(f,g,h,i,k){var l,o,q,r=0,s="0",t=f&&[],u=[],v=j,x=f||e&&d.find.TAG("*",k),y=w+=null==v?1:Math.random()||.1,z=x.length;for(k&&(j=g===n||g||k);s!==z&&null!=(l=x[s]);s++){if(e&&l){o=0,g||l.ownerDocument===n||(m(l),h=!p);while(q=a[o++])if(q(l,g||n,h)){i.push(l);break}k&&(w=y)}c&&((l=!q&&l)&&r--,f&&t.push(l))}if(r+=s,c&&s!==r){o=0;while(q=b[o++])q(t,u,g,h);if(f){if(r>0)while(s--)t[s]||u[s]||(u[s]=E.call(i));u=wa(u)}G.apply(i,u),k&&!f&&u.length>0&&r+b.length>1&&ga.uniqueSort(i)}return k&&(w=y,j=v),t};return c?ia(f):f}return h=ga.compile=function(a,b){var c,d=[],e=[],f=A[a+" "];if(!f){b||(b=g(a)),c=b.length;while(c--)f=ya(b[c]),f[u]?d.push(f):e.push(f);f=A(a,za(e,d)),f.selector=a}return f},i=ga.select=function(a,b,c,e){var f,i,j,k,l,m="function"==typeof a&&a,n=!e&&g(a=m.selector||a);if(c=c||[],1===n.length){if(i=n[0]=n[0].slice(0),i.length>2&&"ID"===(j=i[0]).type&&9===b.nodeType&&p&&d.relative[i[1].type]){if(b=(d.find.ID(j.matches[0].replace(_,aa),b)||[])[0],!b)return c;m&&(b=b.parentNode),a=a.slice(i.shift().value.length)}f=V.needsContext.test(a)?0:i.length;while(f--){if(j=i[f],d.relative[k=j.type])break;if((l=d.find[k])&&(e=l(j.matches[0].replace(_,aa),$.test(i[0].type)&&qa(b.parentNode)||b))){if(i.splice(f,1),a=e.length&&sa(i),!a)return G.apply(c,e),c;break}}}return(m||h(a,n))(e,b,!p,c,!b||$.test(a)&&qa(b.parentNode)||b),c},c.sortStable=u.split("").sort(B).join("")===u,c.detectDuplicates=!!l,m(),c.sortDetached=ja(function(a){return 1&a.compareDocumentPosition(n.createElement("fieldset"))}),ja(function(a){return a.innerHTML="","#"===a.firstChild.getAttribute("href")})||ka("type|href|height|width",function(a,b,c){if(!c)return a.getAttribute(b,"type"===b.toLowerCase()?1:2)}),c.attributes&&ja(function(a){return a.innerHTML="",a.firstChild.setAttribute("value",""),""===a.firstChild.getAttribute("value")})||ka("value",function(a,b,c){if(!c&&"input"===a.nodeName.toLowerCase())return a.defaultValue}),ja(function(a){return null==a.getAttribute("disabled")})||ka(J,function(a,b,c){var d;if(!c)return a[b]===!0?b.toLowerCase():(d=a.getAttributeNode(b))&&d.specified?d.value:null}),ga}(a);r.find=x,r.expr=x.selectors,r.expr[":"]=r.expr.pseudos,r.uniqueSort=r.unique=x.uniqueSort,r.text=x.getText,r.isXMLDoc=x.isXML,r.contains=x.contains,r.escapeSelector=x.escape;var y=function(a,b,c){var d=[],e=void 0!==c;while((a=a[b])&&9!==a.nodeType)if(1===a.nodeType){if(e&&r(a).is(c))break;d.push(a)}return d},z=function(a,b){for(var c=[];a;a=a.nextSibling)1===a.nodeType&&a!==b&&c.push(a);return c},A=r.expr.match.needsContext;function B(a,b){return a.nodeName&&a.nodeName.toLowerCase()===b.toLowerCase()}var C=/^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i,D=/^.[^:#\[\.,]*$/;function E(a,b,c){return r.isFunction(b)?r.grep(a,function(a,d){return!!b.call(a,d,a)!==c}):b.nodeType?r.grep(a,function(a){return a===b!==c}):"string"!=typeof b?r.grep(a,function(a){return i.call(b,a)>-1!==c}):D.test(b)?r.filter(b,a,c):(b=r.filter(b,a),r.grep(a,function(a){return i.call(b,a)>-1!==c&&1===a.nodeType}))}r.filter=function(a,b,c){var d=b[0];return c&&(a=":not("+a+")"),1===b.length&&1===d.nodeType?r.find.matchesSelector(d,a)?[d]:[]:r.find.matches(a,r.grep(b,function(a){return 1===a.nodeType}))},r.fn.extend({find:function(a){var b,c,d=this.length,e=this;if("string"!=typeof a)return this.pushStack(r(a).filter(function(){for(b=0;b1?r.uniqueSort(c):c},filter:function(a){return this.pushStack(E(this,a||[],!1))},not:function(a){return this.pushStack(E(this,a||[],!0))},is:function(a){return!!E(this,"string"==typeof a&&A.test(a)?r(a):a||[],!1).length}});var F,G=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/,H=r.fn.init=function(a,b,c){var e,f;if(!a)return this;if(c=c||F,"string"==typeof a){if(e="<"===a[0]&&">"===a[a.length-1]&&a.length>=3?[null,a,null]:G.exec(a),!e||!e[1]&&b)return!b||b.jquery?(b||c).find(a):this.constructor(b).find(a);if(e[1]){if(b=b instanceof r?b[0]:b,r.merge(this,r.parseHTML(e[1],b&&b.nodeType?b.ownerDocument||b:d,!0)),C.test(e[1])&&r.isPlainObject(b))for(e in b)r.isFunction(this[e])?this[e](b[e]):this.attr(e,b[e]);return this}return f=d.getElementById(e[2]),f&&(this[0]=f,this.length=1),this}return a.nodeType?(this[0]=a,this.length=1,this):r.isFunction(a)?void 0!==c.ready?c.ready(a):a(r):r.makeArray(a,this)};H.prototype=r.fn,F=r(d);var I=/^(?:parents|prev(?:Until|All))/,J={children:!0,contents:!0,next:!0,prev:!0};r.fn.extend({has:function(a){var b=r(a,this),c=b.length;return this.filter(function(){for(var a=0;a-1:1===c.nodeType&&r.find.matchesSelector(c,a))){f.push(c);break}return this.pushStack(f.length>1?r.uniqueSort(f):f)},index:function(a){return a?"string"==typeof a?i.call(r(a),this[0]):i.call(this,a.jquery?a[0]:a):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(a,b){return this.pushStack(r.uniqueSort(r.merge(this.get(),r(a,b))))},addBack:function(a){return this.add(null==a?this.prevObject:this.prevObject.filter(a))}});function K(a,b){while((a=a[b])&&1!==a.nodeType);return a}r.each({parent:function(a){var b=a.parentNode;return b&&11!==b.nodeType?b:null},parents:function(a){return y(a,"parentNode")},parentsUntil:function(a,b,c){return y(a,"parentNode",c)},next:function(a){return K(a,"nextSibling")},prev:function(a){return K(a,"previousSibling")},nextAll:function(a){return y(a,"nextSibling")},prevAll:function(a){return y(a,"previousSibling")},nextUntil:function(a,b,c){return y(a,"nextSibling",c)},prevUntil:function(a,b,c){return y(a,"previousSibling",c)},siblings:function(a){return z((a.parentNode||{}).firstChild,a)},children:function(a){return z(a.firstChild)},contents:function(a){return B(a,"iframe")?a.contentDocument:(B(a,"template")&&(a=a.content||a),r.merge([],a.childNodes))}},function(a,b){r.fn[a]=function(c,d){var e=r.map(this,b,c);return"Until"!==a.slice(-5)&&(d=c),d&&"string"==typeof d&&(e=r.filter(d,e)),this.length>1&&(J[a]||r.uniqueSort(e),I.test(a)&&e.reverse()),this.pushStack(e)}});var L=/[^\x20\t\r\n\f]+/g;function M(a){var b={};return r.each(a.match(L)||[],function(a,c){b[c]=!0}),b}r.Callbacks=function(a){a="string"==typeof a?M(a):r.extend({},a);var b,c,d,e,f=[],g=[],h=-1,i=function(){for(e=e||a.once,d=b=!0;g.length;h=-1){c=g.shift();while(++h-1)f.splice(c,1),c<=h&&h--}),this},has:function(a){return a?r.inArray(a,f)>-1:f.length>0},empty:function(){return f&&(f=[]),this},disable:function(){return e=g=[],f=c="",this},disabled:function(){return!f},lock:function(){return e=g=[],c||b||(f=c=""),this},locked:function(){return!!e},fireWith:function(a,c){return e||(c=c||[],c=[a,c.slice?c.slice():c],g.push(c),b||i()),this},fire:function(){return j.fireWith(this,arguments),this},fired:function(){return!!d}};return j};function N(a){return a}function O(a){throw a}function P(a,b,c,d){var e;try{a&&r.isFunction(e=a.promise)?e.call(a).done(b).fail(c):a&&r.isFunction(e=a.then)?e.call(a,b,c):b.apply(void 0,[a].slice(d))}catch(a){c.apply(void 0,[a])}}r.extend({Deferred:function(b){var c=[["notify","progress",r.Callbacks("memory"),r.Callbacks("memory"),2],["resolve","done",r.Callbacks("once memory"),r.Callbacks("once memory"),0,"resolved"],["reject","fail",r.Callbacks("once memory"),r.Callbacks("once memory"),1,"rejected"]],d="pending",e={state:function(){return d},always:function(){return f.done(arguments).fail(arguments),this},"catch":function(a){return e.then(null,a)},pipe:function(){var a=arguments;return r.Deferred(function(b){r.each(c,function(c,d){var e=r.isFunction(a[d[4]])&&a[d[4]];f[d[1]](function(){var a=e&&e.apply(this,arguments);a&&r.isFunction(a.promise)?a.promise().progress(b.notify).done(b.resolve).fail(b.reject):b[d[0]+"With"](this,e?[a]:arguments)})}),a=null}).promise()},then:function(b,d,e){var f=0;function g(b,c,d,e){return function(){var h=this,i=arguments,j=function(){var a,j;if(!(b=f&&(d!==O&&(h=void 0,i=[a]),c.rejectWith(h,i))}};b?k():(r.Deferred.getStackHook&&(k.stackTrace=r.Deferred.getStackHook()),a.setTimeout(k))}}return r.Deferred(function(a){c[0][3].add(g(0,a,r.isFunction(e)?e:N,a.notifyWith)),c[1][3].add(g(0,a,r.isFunction(b)?b:N)),c[2][3].add(g(0,a,r.isFunction(d)?d:O))}).promise()},promise:function(a){return null!=a?r.extend(a,e):e}},f={};return r.each(c,function(a,b){var g=b[2],h=b[5];e[b[1]]=g.add,h&&g.add(function(){d=h},c[3-a][2].disable,c[0][2].lock),g.add(b[3].fire),f[b[0]]=function(){return f[b[0]+"With"](this===f?void 0:this,arguments),this},f[b[0]+"With"]=g.fireWith}),e.promise(f),b&&b.call(f,f),f},when:function(a){var b=arguments.length,c=b,d=Array(c),e=f.call(arguments),g=r.Deferred(),h=function(a){return function(c){d[a]=this,e[a]=arguments.length>1?f.call(arguments):c,--b||g.resolveWith(d,e)}};if(b<=1&&(P(a,g.done(h(c)).resolve,g.reject,!b),"pending"===g.state()||r.isFunction(e[c]&&e[c].then)))return g.then();while(c--)P(e[c],h(c),g.reject);return g.promise()}});var Q=/^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;r.Deferred.exceptionHook=function(b,c){a.console&&a.console.warn&&b&&Q.test(b.name)&&a.console.warn("jQuery.Deferred exception: "+b.message,b.stack,c)},r.readyException=function(b){a.setTimeout(function(){throw b})};var R=r.Deferred();r.fn.ready=function(a){return R.then(a)["catch"](function(a){r.readyException(a)}),this},r.extend({isReady:!1,readyWait:1,ready:function(a){(a===!0?--r.readyWait:r.isReady)||(r.isReady=!0,a!==!0&&--r.readyWait>0||R.resolveWith(d,[r]))}}),r.ready.then=R.then;function S(){d.removeEventListener("DOMContentLoaded",S), +a.removeEventListener("load",S),r.ready()}"complete"===d.readyState||"loading"!==d.readyState&&!d.documentElement.doScroll?a.setTimeout(r.ready):(d.addEventListener("DOMContentLoaded",S),a.addEventListener("load",S));var T=function(a,b,c,d,e,f,g){var h=0,i=a.length,j=null==c;if("object"===r.type(c)){e=!0;for(h in c)T(a,b,h,c[h],!0,f,g)}else if(void 0!==d&&(e=!0,r.isFunction(d)||(g=!0),j&&(g?(b.call(a,d),b=null):(j=b,b=function(a,b,c){return j.call(r(a),c)})),b))for(;h1,null,!0)},removeData:function(a){return this.each(function(){X.remove(this,a)})}}),r.extend({queue:function(a,b,c){var d;if(a)return b=(b||"fx")+"queue",d=W.get(a,b),c&&(!d||Array.isArray(c)?d=W.access(a,b,r.makeArray(c)):d.push(c)),d||[]},dequeue:function(a,b){b=b||"fx";var c=r.queue(a,b),d=c.length,e=c.shift(),f=r._queueHooks(a,b),g=function(){r.dequeue(a,b)};"inprogress"===e&&(e=c.shift(),d--),e&&("fx"===b&&c.unshift("inprogress"),delete f.stop,e.call(a,g,f)),!d&&f&&f.empty.fire()},_queueHooks:function(a,b){var c=b+"queueHooks";return W.get(a,c)||W.access(a,c,{empty:r.Callbacks("once memory").add(function(){W.remove(a,[b+"queue",c])})})}}),r.fn.extend({queue:function(a,b){var c=2;return"string"!=typeof a&&(b=a,a="fx",c--),arguments.length\x20\t\r\n\f]+)/i,la=/^$|\/(?:java|ecma)script/i,ma={option:[1,""],thead:[1,"","
"],col:[2,"","
"],tr:[2,"","
"],td:[3,"","
"],_default:[0,"",""]};ma.optgroup=ma.option,ma.tbody=ma.tfoot=ma.colgroup=ma.caption=ma.thead,ma.th=ma.td;function na(a,b){var c;return c="undefined"!=typeof a.getElementsByTagName?a.getElementsByTagName(b||"*"):"undefined"!=typeof a.querySelectorAll?a.querySelectorAll(b||"*"):[],void 0===b||b&&B(a,b)?r.merge([a],c):c}function oa(a,b){for(var c=0,d=a.length;c-1)e&&e.push(f);else if(j=r.contains(f.ownerDocument,f),g=na(l.appendChild(f),"script"),j&&oa(g),c){k=0;while(f=g[k++])la.test(f.type||"")&&c.push(f)}return l}!function(){var a=d.createDocumentFragment(),b=a.appendChild(d.createElement("div")),c=d.createElement("input");c.setAttribute("type","radio"),c.setAttribute("checked","checked"),c.setAttribute("name","t"),b.appendChild(c),o.checkClone=b.cloneNode(!0).cloneNode(!0).lastChild.checked,b.innerHTML="",o.noCloneChecked=!!b.cloneNode(!0).lastChild.defaultValue}();var ra=d.documentElement,sa=/^key/,ta=/^(?:mouse|pointer|contextmenu|drag|drop)|click/,ua=/^([^.]*)(?:\.(.+)|)/;function va(){return!0}function wa(){return!1}function xa(){try{return d.activeElement}catch(a){}}function ya(a,b,c,d,e,f){var g,h;if("object"==typeof b){"string"!=typeof c&&(d=d||c,c=void 0);for(h in b)ya(a,h,c,d,b[h],f);return a}if(null==d&&null==e?(e=c,d=c=void 0):null==e&&("string"==typeof c?(e=d,d=void 0):(e=d,d=c,c=void 0)),e===!1)e=wa;else if(!e)return a;return 1===f&&(g=e,e=function(a){return r().off(a),g.apply(this,arguments)},e.guid=g.guid||(g.guid=r.guid++)),a.each(function(){r.event.add(this,b,e,d,c)})}r.event={global:{},add:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,n,o,p,q=W.get(a);if(q){c.handler&&(f=c,c=f.handler,e=f.selector),e&&r.find.matchesSelector(ra,e),c.guid||(c.guid=r.guid++),(i=q.events)||(i=q.events={}),(g=q.handle)||(g=q.handle=function(b){return"undefined"!=typeof r&&r.event.triggered!==b.type?r.event.dispatch.apply(a,arguments):void 0}),b=(b||"").match(L)||[""],j=b.length;while(j--)h=ua.exec(b[j])||[],n=p=h[1],o=(h[2]||"").split(".").sort(),n&&(l=r.event.special[n]||{},n=(e?l.delegateType:l.bindType)||n,l=r.event.special[n]||{},k=r.extend({type:n,origType:p,data:d,handler:c,guid:c.guid,selector:e,needsContext:e&&r.expr.match.needsContext.test(e),namespace:o.join(".")},f),(m=i[n])||(m=i[n]=[],m.delegateCount=0,l.setup&&l.setup.call(a,d,o,g)!==!1||a.addEventListener&&a.addEventListener(n,g)),l.add&&(l.add.call(a,k),k.handler.guid||(k.handler.guid=c.guid)),e?m.splice(m.delegateCount++,0,k):m.push(k),r.event.global[n]=!0)}},remove:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,n,o,p,q=W.hasData(a)&&W.get(a);if(q&&(i=q.events)){b=(b||"").match(L)||[""],j=b.length;while(j--)if(h=ua.exec(b[j])||[],n=p=h[1],o=(h[2]||"").split(".").sort(),n){l=r.event.special[n]||{},n=(d?l.delegateType:l.bindType)||n,m=i[n]||[],h=h[2]&&new RegExp("(^|\\.)"+o.join("\\.(?:.*\\.|)")+"(\\.|$)"),g=f=m.length;while(f--)k=m[f],!e&&p!==k.origType||c&&c.guid!==k.guid||h&&!h.test(k.namespace)||d&&d!==k.selector&&("**"!==d||!k.selector)||(m.splice(f,1),k.selector&&m.delegateCount--,l.remove&&l.remove.call(a,k));g&&!m.length&&(l.teardown&&l.teardown.call(a,o,q.handle)!==!1||r.removeEvent(a,n,q.handle),delete i[n])}else for(n in i)r.event.remove(a,n+b[j],c,d,!0);r.isEmptyObject(i)&&W.remove(a,"handle events")}},dispatch:function(a){var b=r.event.fix(a),c,d,e,f,g,h,i=new Array(arguments.length),j=(W.get(this,"events")||{})[b.type]||[],k=r.event.special[b.type]||{};for(i[0]=b,c=1;c=1))for(;j!==this;j=j.parentNode||this)if(1===j.nodeType&&("click"!==a.type||j.disabled!==!0)){for(f=[],g={},c=0;c-1:r.find(e,this,null,[j]).length),g[e]&&f.push(d);f.length&&h.push({elem:j,handlers:f})}return j=this,i\x20\t\r\n\f]*)[^>]*)\/>/gi,Aa=/\s*$/g;function Ea(a,b){return B(a,"table")&&B(11!==b.nodeType?b:b.firstChild,"tr")?r(">tbody",a)[0]||a:a}function Fa(a){return a.type=(null!==a.getAttribute("type"))+"/"+a.type,a}function Ga(a){var b=Ca.exec(a.type);return b?a.type=b[1]:a.removeAttribute("type"),a}function Ha(a,b){var c,d,e,f,g,h,i,j;if(1===b.nodeType){if(W.hasData(a)&&(f=W.access(a),g=W.set(b,f),j=f.events)){delete g.handle,g.events={};for(e in j)for(c=0,d=j[e].length;c1&&"string"==typeof q&&!o.checkClone&&Ba.test(q))return a.each(function(e){var f=a.eq(e);s&&(b[0]=q.call(this,e,f.html())),Ja(f,b,c,d)});if(m&&(e=qa(b,a[0].ownerDocument,!1,a,d),f=e.firstChild,1===e.childNodes.length&&(e=f),f||d)){for(h=r.map(na(e,"script"),Fa),i=h.length;l")},clone:function(a,b,c){var d,e,f,g,h=a.cloneNode(!0),i=r.contains(a.ownerDocument,a);if(!(o.noCloneChecked||1!==a.nodeType&&11!==a.nodeType||r.isXMLDoc(a)))for(g=na(h),f=na(a),d=0,e=f.length;d0&&oa(g,!i&&na(a,"script")),h},cleanData:function(a){for(var b,c,d,e=r.event.special,f=0;void 0!==(c=a[f]);f++)if(U(c)){if(b=c[W.expando]){if(b.events)for(d in b.events)e[d]?r.event.remove(c,d):r.removeEvent(c,d,b.handle);c[W.expando]=void 0}c[X.expando]&&(c[X.expando]=void 0)}}}),r.fn.extend({detach:function(a){return Ka(this,a,!0)},remove:function(a){return Ka(this,a)},text:function(a){return T(this,function(a){return void 0===a?r.text(this):this.empty().each(function(){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||(this.textContent=a)})},null,a,arguments.length)},append:function(){return Ja(this,arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=Ea(this,a);b.appendChild(a)}})},prepend:function(){return Ja(this,arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=Ea(this,a);b.insertBefore(a,b.firstChild)}})},before:function(){return Ja(this,arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this)})},after:function(){return Ja(this,arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this.nextSibling)})},empty:function(){for(var a,b=0;null!=(a=this[b]);b++)1===a.nodeType&&(r.cleanData(na(a,!1)),a.textContent="");return this},clone:function(a,b){return a=null!=a&&a,b=null==b?a:b,this.map(function(){return r.clone(this,a,b)})},html:function(a){return T(this,function(a){var b=this[0]||{},c=0,d=this.length;if(void 0===a&&1===b.nodeType)return b.innerHTML;if("string"==typeof a&&!Aa.test(a)&&!ma[(ka.exec(a)||["",""])[1].toLowerCase()]){a=r.htmlPrefilter(a);try{for(;c1)}});function _a(a,b,c,d,e){return new _a.prototype.init(a,b,c,d,e)}r.Tween=_a,_a.prototype={constructor:_a,init:function(a,b,c,d,e,f){this.elem=a,this.prop=c,this.easing=e||r.easing._default,this.options=b,this.start=this.now=this.cur(),this.end=d,this.unit=f||(r.cssNumber[c]?"":"px")},cur:function(){var a=_a.propHooks[this.prop];return a&&a.get?a.get(this):_a.propHooks._default.get(this)},run:function(a){var b,c=_a.propHooks[this.prop];return this.options.duration?this.pos=b=r.easing[this.easing](a,this.options.duration*a,0,1,this.options.duration):this.pos=b=a,this.now=(this.end-this.start)*b+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),c&&c.set?c.set(this):_a.propHooks._default.set(this),this}},_a.prototype.init.prototype=_a.prototype,_a.propHooks={_default:{get:function(a){var b;return 1!==a.elem.nodeType||null!=a.elem[a.prop]&&null==a.elem.style[a.prop]?a.elem[a.prop]:(b=r.css(a.elem,a.prop,""),b&&"auto"!==b?b:0)},set:function(a){r.fx.step[a.prop]?r.fx.step[a.prop](a):1!==a.elem.nodeType||null==a.elem.style[r.cssProps[a.prop]]&&!r.cssHooks[a.prop]?a.elem[a.prop]=a.now:r.style(a.elem,a.prop,a.now+a.unit)}}},_a.propHooks.scrollTop=_a.propHooks.scrollLeft={set:function(a){a.elem.nodeType&&a.elem.parentNode&&(a.elem[a.prop]=a.now)}},r.easing={linear:function(a){return a},swing:function(a){return.5-Math.cos(a*Math.PI)/2},_default:"swing"},r.fx=_a.prototype.init,r.fx.step={};var ab,bb,cb=/^(?:toggle|show|hide)$/,db=/queueHooks$/;function eb(){bb&&(d.hidden===!1&&a.requestAnimationFrame?a.requestAnimationFrame(eb):a.setTimeout(eb,r.fx.interval),r.fx.tick())}function fb(){return a.setTimeout(function(){ab=void 0}),ab=r.now()}function gb(a,b){var c,d=0,e={height:a};for(b=b?1:0;d<4;d+=2-b)c=ca[d],e["margin"+c]=e["padding"+c]=a;return b&&(e.opacity=e.width=a),e}function hb(a,b,c){for(var d,e=(kb.tweeners[b]||[]).concat(kb.tweeners["*"]),f=0,g=e.length;f1)},removeAttr:function(a){return this.each(function(){r.removeAttr(this,a)})}}),r.extend({attr:function(a,b,c){var d,e,f=a.nodeType;if(3!==f&&8!==f&&2!==f)return"undefined"==typeof a.getAttribute?r.prop(a,b,c):(1===f&&r.isXMLDoc(a)||(e=r.attrHooks[b.toLowerCase()]||(r.expr.match.bool.test(b)?lb:void 0)),void 0!==c?null===c?void r.removeAttr(a,b):e&&"set"in e&&void 0!==(d=e.set(a,c,b))?d:(a.setAttribute(b,c+""),c):e&&"get"in e&&null!==(d=e.get(a,b))?d:(d=r.find.attr(a,b), +null==d?void 0:d))},attrHooks:{type:{set:function(a,b){if(!o.radioValue&&"radio"===b&&B(a,"input")){var c=a.value;return a.setAttribute("type",b),c&&(a.value=c),b}}}},removeAttr:function(a,b){var c,d=0,e=b&&b.match(L);if(e&&1===a.nodeType)while(c=e[d++])a.removeAttribute(c)}}),lb={set:function(a,b,c){return b===!1?r.removeAttr(a,c):a.setAttribute(c,c),c}},r.each(r.expr.match.bool.source.match(/\w+/g),function(a,b){var c=mb[b]||r.find.attr;mb[b]=function(a,b,d){var e,f,g=b.toLowerCase();return d||(f=mb[g],mb[g]=e,e=null!=c(a,b,d)?g:null,mb[g]=f),e}});var nb=/^(?:input|select|textarea|button)$/i,ob=/^(?:a|area)$/i;r.fn.extend({prop:function(a,b){return T(this,r.prop,a,b,arguments.length>1)},removeProp:function(a){return this.each(function(){delete this[r.propFix[a]||a]})}}),r.extend({prop:function(a,b,c){var d,e,f=a.nodeType;if(3!==f&&8!==f&&2!==f)return 1===f&&r.isXMLDoc(a)||(b=r.propFix[b]||b,e=r.propHooks[b]),void 0!==c?e&&"set"in e&&void 0!==(d=e.set(a,c,b))?d:a[b]=c:e&&"get"in e&&null!==(d=e.get(a,b))?d:a[b]},propHooks:{tabIndex:{get:function(a){var b=r.find.attr(a,"tabindex");return b?parseInt(b,10):nb.test(a.nodeName)||ob.test(a.nodeName)&&a.href?0:-1}}},propFix:{"for":"htmlFor","class":"className"}}),o.optSelected||(r.propHooks.selected={get:function(a){var b=a.parentNode;return b&&b.parentNode&&b.parentNode.selectedIndex,null},set:function(a){var b=a.parentNode;b&&(b.selectedIndex,b.parentNode&&b.parentNode.selectedIndex)}}),r.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],function(){r.propFix[this.toLowerCase()]=this});function pb(a){var b=a.match(L)||[];return b.join(" ")}function qb(a){return a.getAttribute&&a.getAttribute("class")||""}r.fn.extend({addClass:function(a){var b,c,d,e,f,g,h,i=0;if(r.isFunction(a))return this.each(function(b){r(this).addClass(a.call(this,b,qb(this)))});if("string"==typeof a&&a){b=a.match(L)||[];while(c=this[i++])if(e=qb(c),d=1===c.nodeType&&" "+pb(e)+" "){g=0;while(f=b[g++])d.indexOf(" "+f+" ")<0&&(d+=f+" ");h=pb(d),e!==h&&c.setAttribute("class",h)}}return this},removeClass:function(a){var b,c,d,e,f,g,h,i=0;if(r.isFunction(a))return this.each(function(b){r(this).removeClass(a.call(this,b,qb(this)))});if(!arguments.length)return this.attr("class","");if("string"==typeof a&&a){b=a.match(L)||[];while(c=this[i++])if(e=qb(c),d=1===c.nodeType&&" "+pb(e)+" "){g=0;while(f=b[g++])while(d.indexOf(" "+f+" ")>-1)d=d.replace(" "+f+" "," ");h=pb(d),e!==h&&c.setAttribute("class",h)}}return this},toggleClass:function(a,b){var c=typeof a;return"boolean"==typeof b&&"string"===c?b?this.addClass(a):this.removeClass(a):r.isFunction(a)?this.each(function(c){r(this).toggleClass(a.call(this,c,qb(this),b),b)}):this.each(function(){var b,d,e,f;if("string"===c){d=0,e=r(this),f=a.match(L)||[];while(b=f[d++])e.hasClass(b)?e.removeClass(b):e.addClass(b)}else void 0!==a&&"boolean"!==c||(b=qb(this),b&&W.set(this,"__className__",b),this.setAttribute&&this.setAttribute("class",b||a===!1?"":W.get(this,"__className__")||""))})},hasClass:function(a){var b,c,d=0;b=" "+a+" ";while(c=this[d++])if(1===c.nodeType&&(" "+pb(qb(c))+" ").indexOf(b)>-1)return!0;return!1}});var rb=/\r/g;r.fn.extend({val:function(a){var b,c,d,e=this[0];{if(arguments.length)return d=r.isFunction(a),this.each(function(c){var e;1===this.nodeType&&(e=d?a.call(this,c,r(this).val()):a,null==e?e="":"number"==typeof e?e+="":Array.isArray(e)&&(e=r.map(e,function(a){return null==a?"":a+""})),b=r.valHooks[this.type]||r.valHooks[this.nodeName.toLowerCase()],b&&"set"in b&&void 0!==b.set(this,e,"value")||(this.value=e))});if(e)return b=r.valHooks[e.type]||r.valHooks[e.nodeName.toLowerCase()],b&&"get"in b&&void 0!==(c=b.get(e,"value"))?c:(c=e.value,"string"==typeof c?c.replace(rb,""):null==c?"":c)}}}),r.extend({valHooks:{option:{get:function(a){var b=r.find.attr(a,"value");return null!=b?b:pb(r.text(a))}},select:{get:function(a){var b,c,d,e=a.options,f=a.selectedIndex,g="select-one"===a.type,h=g?null:[],i=g?f+1:e.length;for(d=f<0?i:g?f:0;d-1)&&(c=!0);return c||(a.selectedIndex=-1),f}}}}),r.each(["radio","checkbox"],function(){r.valHooks[this]={set:function(a,b){if(Array.isArray(b))return a.checked=r.inArray(r(a).val(),b)>-1}},o.checkOn||(r.valHooks[this].get=function(a){return null===a.getAttribute("value")?"on":a.value})});var sb=/^(?:focusinfocus|focusoutblur)$/;r.extend(r.event,{trigger:function(b,c,e,f){var g,h,i,j,k,m,n,o=[e||d],p=l.call(b,"type")?b.type:b,q=l.call(b,"namespace")?b.namespace.split("."):[];if(h=i=e=e||d,3!==e.nodeType&&8!==e.nodeType&&!sb.test(p+r.event.triggered)&&(p.indexOf(".")>-1&&(q=p.split("."),p=q.shift(),q.sort()),k=p.indexOf(":")<0&&"on"+p,b=b[r.expando]?b:new r.Event(p,"object"==typeof b&&b),b.isTrigger=f?2:3,b.namespace=q.join("."),b.rnamespace=b.namespace?new RegExp("(^|\\.)"+q.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,b.result=void 0,b.target||(b.target=e),c=null==c?[b]:r.makeArray(c,[b]),n=r.event.special[p]||{},f||!n.trigger||n.trigger.apply(e,c)!==!1)){if(!f&&!n.noBubble&&!r.isWindow(e)){for(j=n.delegateType||p,sb.test(j+p)||(h=h.parentNode);h;h=h.parentNode)o.push(h),i=h;i===(e.ownerDocument||d)&&o.push(i.defaultView||i.parentWindow||a)}g=0;while((h=o[g++])&&!b.isPropagationStopped())b.type=g>1?j:n.bindType||p,m=(W.get(h,"events")||{})[b.type]&&W.get(h,"handle"),m&&m.apply(h,c),m=k&&h[k],m&&m.apply&&U(h)&&(b.result=m.apply(h,c),b.result===!1&&b.preventDefault());return b.type=p,f||b.isDefaultPrevented()||n._default&&n._default.apply(o.pop(),c)!==!1||!U(e)||k&&r.isFunction(e[p])&&!r.isWindow(e)&&(i=e[k],i&&(e[k]=null),r.event.triggered=p,e[p](),r.event.triggered=void 0,i&&(e[k]=i)),b.result}},simulate:function(a,b,c){var d=r.extend(new r.Event,c,{type:a,isSimulated:!0});r.event.trigger(d,null,b)}}),r.fn.extend({trigger:function(a,b){return this.each(function(){r.event.trigger(a,b,this)})},triggerHandler:function(a,b){var c=this[0];if(c)return r.event.trigger(a,b,c,!0)}}),r.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(a,b){r.fn[b]=function(a,c){return arguments.length>0?this.on(b,null,a,c):this.trigger(b)}}),r.fn.extend({hover:function(a,b){return this.mouseenter(a).mouseleave(b||a)}}),o.focusin="onfocusin"in a,o.focusin||r.each({focus:"focusin",blur:"focusout"},function(a,b){var c=function(a){r.event.simulate(b,a.target,r.event.fix(a))};r.event.special[b]={setup:function(){var d=this.ownerDocument||this,e=W.access(d,b);e||d.addEventListener(a,c,!0),W.access(d,b,(e||0)+1)},teardown:function(){var d=this.ownerDocument||this,e=W.access(d,b)-1;e?W.access(d,b,e):(d.removeEventListener(a,c,!0),W.remove(d,b))}}});var tb=a.location,ub=r.now(),vb=/\?/;r.parseXML=function(b){var c;if(!b||"string"!=typeof b)return null;try{c=(new a.DOMParser).parseFromString(b,"text/xml")}catch(d){c=void 0}return c&&!c.getElementsByTagName("parsererror").length||r.error("Invalid XML: "+b),c};var wb=/\[\]$/,xb=/\r?\n/g,yb=/^(?:submit|button|image|reset|file)$/i,zb=/^(?:input|select|textarea|keygen)/i;function Ab(a,b,c,d){var e;if(Array.isArray(b))r.each(b,function(b,e){c||wb.test(a)?d(a,e):Ab(a+"["+("object"==typeof e&&null!=e?b:"")+"]",e,c,d)});else if(c||"object"!==r.type(b))d(a,b);else for(e in b)Ab(a+"["+e+"]",b[e],c,d)}r.param=function(a,b){var c,d=[],e=function(a,b){var c=r.isFunction(b)?b():b;d[d.length]=encodeURIComponent(a)+"="+encodeURIComponent(null==c?"":c)};if(Array.isArray(a)||a.jquery&&!r.isPlainObject(a))r.each(a,function(){e(this.name,this.value)});else for(c in a)Ab(c,a[c],b,e);return d.join("&")},r.fn.extend({serialize:function(){return r.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var a=r.prop(this,"elements");return a?r.makeArray(a):this}).filter(function(){var a=this.type;return this.name&&!r(this).is(":disabled")&&zb.test(this.nodeName)&&!yb.test(a)&&(this.checked||!ja.test(a))}).map(function(a,b){var c=r(this).val();return null==c?null:Array.isArray(c)?r.map(c,function(a){return{name:b.name,value:a.replace(xb,"\r\n")}}):{name:b.name,value:c.replace(xb,"\r\n")}}).get()}});var Bb=/%20/g,Cb=/#.*$/,Db=/([?&])_=[^&]*/,Eb=/^(.*?):[ \t]*([^\r\n]*)$/gm,Fb=/^(?:about|app|app-storage|.+-extension|file|res|widget):$/,Gb=/^(?:GET|HEAD)$/,Hb=/^\/\//,Ib={},Jb={},Kb="*/".concat("*"),Lb=d.createElement("a");Lb.href=tb.href;function Mb(a){return function(b,c){"string"!=typeof b&&(c=b,b="*");var d,e=0,f=b.toLowerCase().match(L)||[];if(r.isFunction(c))while(d=f[e++])"+"===d[0]?(d=d.slice(1)||"*",(a[d]=a[d]||[]).unshift(c)):(a[d]=a[d]||[]).push(c)}}function Nb(a,b,c,d){var e={},f=a===Jb;function g(h){var i;return e[h]=!0,r.each(a[h]||[],function(a,h){var j=h(b,c,d);return"string"!=typeof j||f||e[j]?f?!(i=j):void 0:(b.dataTypes.unshift(j),g(j),!1)}),i}return g(b.dataTypes[0])||!e["*"]&&g("*")}function Ob(a,b){var c,d,e=r.ajaxSettings.flatOptions||{};for(c in b)void 0!==b[c]&&((e[c]?a:d||(d={}))[c]=b[c]);return d&&r.extend(!0,a,d),a}function Pb(a,b,c){var d,e,f,g,h=a.contents,i=a.dataTypes;while("*"===i[0])i.shift(),void 0===d&&(d=a.mimeType||b.getResponseHeader("Content-Type"));if(d)for(e in h)if(h[e]&&h[e].test(d)){i.unshift(e);break}if(i[0]in c)f=i[0];else{for(e in c){if(!i[0]||a.converters[e+" "+i[0]]){f=e;break}g||(g=e)}f=f||g}if(f)return f!==i[0]&&i.unshift(f),c[f]}function Qb(a,b,c,d){var e,f,g,h,i,j={},k=a.dataTypes.slice();if(k[1])for(g in a.converters)j[g.toLowerCase()]=a.converters[g];f=k.shift();while(f)if(a.responseFields[f]&&(c[a.responseFields[f]]=b),!i&&d&&a.dataFilter&&(b=a.dataFilter(b,a.dataType)),i=f,f=k.shift())if("*"===f)f=i;else if("*"!==i&&i!==f){if(g=j[i+" "+f]||j["* "+f],!g)for(e in j)if(h=e.split(" "),h[1]===f&&(g=j[i+" "+h[0]]||j["* "+h[0]])){g===!0?g=j[e]:j[e]!==!0&&(f=h[0],k.unshift(h[1]));break}if(g!==!0)if(g&&a["throws"])b=g(b);else try{b=g(b)}catch(l){return{state:"parsererror",error:g?l:"No conversion from "+i+" to "+f}}}return{state:"success",data:b}}r.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:tb.href,type:"GET",isLocal:Fb.test(tb.protocol),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":Kb,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/\bxml\b/,html:/\bhtml/,json:/\bjson\b/},responseFields:{xml:"responseXML",text:"responseText",json:"responseJSON"},converters:{"* text":String,"text html":!0,"text json":JSON.parse,"text xml":r.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(a,b){return b?Ob(Ob(a,r.ajaxSettings),b):Ob(r.ajaxSettings,a)},ajaxPrefilter:Mb(Ib),ajaxTransport:Mb(Jb),ajax:function(b,c){"object"==typeof b&&(c=b,b=void 0),c=c||{};var e,f,g,h,i,j,k,l,m,n,o=r.ajaxSetup({},c),p=o.context||o,q=o.context&&(p.nodeType||p.jquery)?r(p):r.event,s=r.Deferred(),t=r.Callbacks("once memory"),u=o.statusCode||{},v={},w={},x="canceled",y={readyState:0,getResponseHeader:function(a){var b;if(k){if(!h){h={};while(b=Eb.exec(g))h[b[1].toLowerCase()]=b[2]}b=h[a.toLowerCase()]}return null==b?null:b},getAllResponseHeaders:function(){return k?g:null},setRequestHeader:function(a,b){return null==k&&(a=w[a.toLowerCase()]=w[a.toLowerCase()]||a,v[a]=b),this},overrideMimeType:function(a){return null==k&&(o.mimeType=a),this},statusCode:function(a){var b;if(a)if(k)y.always(a[y.status]);else for(b in a)u[b]=[u[b],a[b]];return this},abort:function(a){var b=a||x;return e&&e.abort(b),A(0,b),this}};if(s.promise(y),o.url=((b||o.url||tb.href)+"").replace(Hb,tb.protocol+"//"),o.type=c.method||c.type||o.method||o.type,o.dataTypes=(o.dataType||"*").toLowerCase().match(L)||[""],null==o.crossDomain){j=d.createElement("a");try{j.href=o.url,j.href=j.href,o.crossDomain=Lb.protocol+"//"+Lb.host!=j.protocol+"//"+j.host}catch(z){o.crossDomain=!0}}if(o.data&&o.processData&&"string"!=typeof o.data&&(o.data=r.param(o.data,o.traditional)),Nb(Ib,o,c,y),k)return y;l=r.event&&o.global,l&&0===r.active++&&r.event.trigger("ajaxStart"),o.type=o.type.toUpperCase(),o.hasContent=!Gb.test(o.type),f=o.url.replace(Cb,""),o.hasContent?o.data&&o.processData&&0===(o.contentType||"").indexOf("application/x-www-form-urlencoded")&&(o.data=o.data.replace(Bb,"+")):(n=o.url.slice(f.length),o.data&&(f+=(vb.test(f)?"&":"?")+o.data,delete o.data),o.cache===!1&&(f=f.replace(Db,"$1"),n=(vb.test(f)?"&":"?")+"_="+ub++ +n),o.url=f+n),o.ifModified&&(r.lastModified[f]&&y.setRequestHeader("If-Modified-Since",r.lastModified[f]),r.etag[f]&&y.setRequestHeader("If-None-Match",r.etag[f])),(o.data&&o.hasContent&&o.contentType!==!1||c.contentType)&&y.setRequestHeader("Content-Type",o.contentType),y.setRequestHeader("Accept",o.dataTypes[0]&&o.accepts[o.dataTypes[0]]?o.accepts[o.dataTypes[0]]+("*"!==o.dataTypes[0]?", "+Kb+"; q=0.01":""):o.accepts["*"]);for(m in o.headers)y.setRequestHeader(m,o.headers[m]);if(o.beforeSend&&(o.beforeSend.call(p,y,o)===!1||k))return y.abort();if(x="abort",t.add(o.complete),y.done(o.success),y.fail(o.error),e=Nb(Jb,o,c,y)){if(y.readyState=1,l&&q.trigger("ajaxSend",[y,o]),k)return y;o.async&&o.timeout>0&&(i=a.setTimeout(function(){y.abort("timeout")},o.timeout));try{k=!1,e.send(v,A)}catch(z){if(k)throw z;A(-1,z)}}else A(-1,"No Transport");function A(b,c,d,h){var j,m,n,v,w,x=c;k||(k=!0,i&&a.clearTimeout(i),e=void 0,g=h||"",y.readyState=b>0?4:0,j=b>=200&&b<300||304===b,d&&(v=Pb(o,y,d)),v=Qb(o,v,y,j),j?(o.ifModified&&(w=y.getResponseHeader("Last-Modified"),w&&(r.lastModified[f]=w),w=y.getResponseHeader("etag"),w&&(r.etag[f]=w)),204===b||"HEAD"===o.type?x="nocontent":304===b?x="notmodified":(x=v.state,m=v.data,n=v.error,j=!n)):(n=x,!b&&x||(x="error",b<0&&(b=0))),y.status=b,y.statusText=(c||x)+"",j?s.resolveWith(p,[m,x,y]):s.rejectWith(p,[y,x,n]),y.statusCode(u),u=void 0,l&&q.trigger(j?"ajaxSuccess":"ajaxError",[y,o,j?m:n]),t.fireWith(p,[y,x]),l&&(q.trigger("ajaxComplete",[y,o]),--r.active||r.event.trigger("ajaxStop")))}return y},getJSON:function(a,b,c){return r.get(a,b,c,"json")},getScript:function(a,b){return r.get(a,void 0,b,"script")}}),r.each(["get","post"],function(a,b){r[b]=function(a,c,d,e){return r.isFunction(c)&&(e=e||d,d=c,c=void 0),r.ajax(r.extend({url:a,type:b,dataType:e,data:c,success:d},r.isPlainObject(a)&&a))}}),r._evalUrl=function(a){return r.ajax({url:a,type:"GET",dataType:"script",cache:!0,async:!1,global:!1,"throws":!0})},r.fn.extend({wrapAll:function(a){var b;return this[0]&&(r.isFunction(a)&&(a=a.call(this[0])),b=r(a,this[0].ownerDocument).eq(0).clone(!0),this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstElementChild)a=a.firstElementChild;return a}).append(this)),this},wrapInner:function(a){return r.isFunction(a)?this.each(function(b){r(this).wrapInner(a.call(this,b))}):this.each(function(){var b=r(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){var b=r.isFunction(a);return this.each(function(c){r(this).wrapAll(b?a.call(this,c):a)})},unwrap:function(a){return this.parent(a).not("body").each(function(){r(this).replaceWith(this.childNodes)}),this}}),r.expr.pseudos.hidden=function(a){return!r.expr.pseudos.visible(a)},r.expr.pseudos.visible=function(a){return!!(a.offsetWidth||a.offsetHeight||a.getClientRects().length)},r.ajaxSettings.xhr=function(){try{return new a.XMLHttpRequest}catch(b){}};var Rb={0:200,1223:204},Sb=r.ajaxSettings.xhr();o.cors=!!Sb&&"withCredentials"in Sb,o.ajax=Sb=!!Sb,r.ajaxTransport(function(b){var c,d;if(o.cors||Sb&&!b.crossDomain)return{send:function(e,f){var g,h=b.xhr();if(h.open(b.type,b.url,b.async,b.username,b.password),b.xhrFields)for(g in b.xhrFields)h[g]=b.xhrFields[g];b.mimeType&&h.overrideMimeType&&h.overrideMimeType(b.mimeType),b.crossDomain||e["X-Requested-With"]||(e["X-Requested-With"]="XMLHttpRequest");for(g in e)h.setRequestHeader(g,e[g]);c=function(a){return function(){c&&(c=d=h.onload=h.onerror=h.onabort=h.onreadystatechange=null,"abort"===a?h.abort():"error"===a?"number"!=typeof h.status?f(0,"error"):f(h.status,h.statusText):f(Rb[h.status]||h.status,h.statusText,"text"!==(h.responseType||"text")||"string"!=typeof h.responseText?{binary:h.response}:{text:h.responseText},h.getAllResponseHeaders()))}},h.onload=c(),d=h.onerror=c("error"),void 0!==h.onabort?h.onabort=d:h.onreadystatechange=function(){4===h.readyState&&a.setTimeout(function(){c&&d()})},c=c("abort");try{h.send(b.hasContent&&b.data||null)}catch(i){if(c)throw i}},abort:function(){c&&c()}}}),r.ajaxPrefilter(function(a){a.crossDomain&&(a.contents.script=!1)}),r.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/\b(?:java|ecma)script\b/},converters:{"text script":function(a){return r.globalEval(a),a}}}),r.ajaxPrefilter("script",function(a){void 0===a.cache&&(a.cache=!1),a.crossDomain&&(a.type="GET")}),r.ajaxTransport("script",function(a){if(a.crossDomain){var b,c;return{send:function(e,f){b=r(" + + + + + + +``` + +If you like to just include the polyfills yourself, you could include them in +`js/plugins.js`. When you have a bunch of polyfills to load in, you could +also create a `polyfills.js` file in the `js/vendor` directory or include the files +individually and combine them using a build tool. Always ensure that the polyfills +are all loaded before any other Javascript. + +There are some misconceptions about Modernizr and polyfills. It's important +to understand that Modernizr just handles feature checking, not polyfilling +itself. The only thing Modernizr does regarding polyfills is that the team +maintains [a huge list of cross Browser polyfills](https://github.com/Modernizr/Modernizr/wiki/HTML5-Cross-Browser-Polyfills). + +### jQuery CDN for jQuery + +The jQuery CDN version of the jQuery JavaScript library is referenced towards +the bottom of the page. A local fallback of jQuery is included for rare instances +when the CDN version might not be available, and to facilitate offline +development. + +The jQuery CDN version was chosen over other potential candidates +([like Google's Hosted Libraries](https://developers.google.com/speed/libraries/)) +because it's fast ([comparable or faster than Google by some +measures](https://www.cdnperf.com/#jsdelivr,cdnjs,google,yandex,microsoft,jquery,bootstrapcdn/https/90)) +and, (unlike Google's CDN) is available to China's hundreds of millions of internet users. +For many years we [chose](https://github.com/h5bp/html5-boilerplate/issues/1191) +the Google Hosted version over the jQuery CDN because it was available +over HTTPS (the jQuery CDN was not,) and it offered a better chance of +hitting the cache lottery owing to the popularity of the Google CDN. +The first issue is no longer valid and the second is far outweighed by +being able to serve jQuery to Chinese users. + +While the jQuery CDN is a strong default solution your site or application may +require a different configuration. Testing your site with services like +[WebPageTest](https://www.webpagetest.org/) and browser tools like +[PageSpeed Insights](https://developers.google.com/speed/pagespeed/insights/) will help you examine the real +world performance of your site and can show where you can optimize your specific +site or application. + +### Google Universal Analytics Tracking Code + +Finally, an optimized version of the Google Universal Analytics tracking code is +included. Google recommends that this script be placed at the top of the page. +Factors to consider: if you place this script at the top of the page, you’ll +be able to count users who don’t fully load the page, and you’ll incur the max +number of simultaneous connections of the browser. + +Further information: + +* [Optimizing the Google Universal Analytics + Snippet](https://mathiasbynens.be/notes/async-analytics-snippet#universal-analytics) +* [Introduction to + Analytics.js](https://developers.google.com/analytics/devguides/collection/analyticsjs/) +* [Google Analytics Demos & Tools](https://ga-dev-tools.appspot.com/) + +**N.B.** The Google Universal Analytics snippet is included by default mainly +because Google Analytics is [currently one of the most popular tracking +solutions](https://trends.builtwith.com/analytics/Google-Analytics) out there. +However, its usage isn't set in stone, and you SHOULD consider exploring the +[alternatives](https://en.wikipedia.org/wiki/List_of_web_analytics_software) +and use whatever suits your needs best! diff --git a/nesting/src/doc/js.md b/nesting/src/doc/js.md new file mode 100644 index 0000000..61f8461 --- /dev/null +++ b/nesting/src/doc/js.md @@ -0,0 +1,36 @@ +[HTML5 Boilerplate homepage](https://html5boilerplate.com/) | [Documentation +table of contents](TOC.md) + +# The JavaScript + +Information about the default JavaScript included in the project. + +## main.js + +This file can be used to contain or reference your site/app JavaScript code. +If you're working on something more advanced you might replace this file +entirely. That's cool. + +## plugins.js + +This file can be used to contain all your plugins, such as jQuery plugins and +other 3rd party scripts for a simple site. + +One approach is to put jQuery plugins inside of a `(function($){ ... +})(jQuery);` closure to make sure they're in the jQuery namespace safety +blanket. Read more about [jQuery plugin +authoring](https://learn.jquery.com/plugins/#Getting_Started). + +By default the `plugins.js` file contains a small script to avoid `console` +errors in browsers that lack a `console`. The script will make sure that, if +a console method isn't available, that method will have the value of empty +function, thus, preventing the browser from throwing an error. + +## vendor + +This directory can be used to contain all 3rd party library code. + +Minified versions of the latest jQuery and Modernizr libraries are included by +default. You may wish to create your own [custom Modernizr +build with the online builder](https://www.modernizr.com/download/) or [command +line tool](https://modernizr.com/docs#command-line-config). diff --git a/nesting/src/doc/misc.md b/nesting/src/doc/misc.md new file mode 100644 index 0000000..74ca04f --- /dev/null +++ b/nesting/src/doc/misc.md @@ -0,0 +1,158 @@ +[HTML5 Boilerplate homepage](https://html5boilerplate.com/) | [Documentation +table of contents](TOC.md) + +# Miscellaneous + +* [.gitignore](#gitignore) +* [.editorconfig](#editorconfig) +* [Server Configuration](#server-configuration) +* [robots.txt](#robotstxt) +* [browserconfig.xml](#browserconfigxml) + +-- + +## .gitignore + +HTML5 Boilerplate includes a basic project-level `.gitignore`. This should +primarily be used to avoid certain project-level files and directories from +being kept under source control. Different development-environments will +benefit from different collections of ignores. + +OS-specific and editor-specific files should be ignored using a "global +ignore" that applies to all repositories on your system. + +For example, add the following to your `~/.gitconfig`, where the `.gitignore` +in your HOME directory contains the files and directories you'd like to +globally ignore: + +```gitignore +[core] + excludesfile = ~/.gitignore +``` + +* More on global ignores: https://help.github.com/articles/ignoring-files/ +* Comprehensive set of ignores on GitHub: https://github.com/github/gitignore + + +## .editorconfig + +The `.editorconfig` file is provided in order to encourage and help you and +your team define and maintain consistent coding styles between different +editors and IDEs. + +By default, `.editorconfig` includes some basic +[properties](http://editorconfig.org/#supported-properties) that reflect the +coding styles from the files provided by default, but you can easily change +them to better suit your needs. + +In order for your editor/IDE to apply the +[properties](http://editorconfig.org/#supported-properties) from the +`.editorconfig` file, you may need to [install a +plugin]( http://editorconfig.org/#download). + +__N.B.__ If you aren't using the server configurations provided by HTML5 +Boilerplate, we highly encourage you to configure your server to block +access to `.editorconfig` files, as they can disclose sensitive information! + +For more details, please refer to the [EditorConfig +project](http://editorconfig.org/). + + +## Server Configuration + +H5BP includes a [`.htaccess`](#htaccess) file for the [Apache HTTP +server](https://httpd.apache.org/docs/). If you are not using Apache +as your web server, then you are encouraged to download a +[server configuration](https://github.com/h5bp/server-configs) that +corresponds to your web server and environment. + +A `.htaccess` (hypertext access) file is an [Apache HTTP server +configuration file](https://github.com/h5bp/server-configs-apache). +The `.htaccess` file is mostly used for: + +* Rewriting URLs +* Controlling cache +* Authentication +* Server-side includes +* Redirects +* Gzipping + +If you have access to the main server configuration file (usually called +`httpd.conf`), you should add the logic from the `.htaccess` file in, for +example, a section in the main configuration file. This is usually +the recommended way, as using .htaccess files slows down Apache! + +To enable Apache modules locally, please see: +https://github.com/h5bp/server-configs-apache/wiki/How-to-enable-Apache-modules. + +In the repo the `.htaccess` is used for: + +* Allowing cross-origin access to web fonts +* CORS header for images when browsers request it +* Enable `404.html` as 404 error document +* Making the website experience better for IE users better +* Media UTF-8 as character encoding for `text/html` and `text/plain` +* Enabling the rewrite URLs engine +* Forcing or removing the `www.` at the begin of a URL +* It blocks access to directories without a default document +* It blocks access to files that can expose sensitive information. +* It reduces MIME type security risks +* It forces compressing (gzipping) +* It tells the browser whether they should request a specific file from the + server or whether they should grab it from the browser's cache + +When using `.htaccess` we recommend reading all inline comments (the rules after +a `#`) in the file once. There is a bunch of optional stuff in it. + +If you want to know more about the `.htaccess` file check out the +[Apache HTTP server docs](https://httpd.apache.org/docs/) or more +specifically the [htaccess +section](https://httpd.apache.org/docs/current/howto/htaccess.html). + +Notice that the original repo for the `.htaccess` file is [this +one](https://github.com/h5bp/server-configs-apache). + + +## robots.txt + +The `robots.txt` file is used to give instructions to web robots on what can +be crawled from the website. + +By default, the file provided by this project includes the next two lines: + + * `User-agent: *` - the following rules apply to all web robots + * `Disallow:` - everything on the website is allowed to be crawled + +If you want to disallow certain pages you will need to specify the path in a +`Disallow` directive (e.g.: `Disallow: /path`) or, if you want to disallow +crawling of all content, use `Disallow: /`. + +The `/robots.txt` file is not intended for access control, so don't try to +use it as such. Think of it as a "No Entry" sign, rather than a locked door. +URLs disallowed by the `robots.txt` file might still be indexed without being +crawled, and the content from within the `robots.txt` file can be viewed by +anyone, potentially disclosing the location of your private content! So, if +you want to block access to private content, use proper authentication instead. + +For more information about `robots.txt`, please see: + + * [robotstxt.org](http://www.robotstxt.org/) + * [How Google handles the `robots.txt` file](https://developers.google.com/webmasters/control-crawl-index/docs/robots_txt) + + +## browserconfig.xml + +The `browserconfig.xml` file is used to customize the tile displayed when users +pin your site to the Windows 8.1 start screen. In there you can define custom +tile colors, custom images or even [live tiles](https://msdn.microsoft.com/library/dn455106.aspx#CreatingLiveTiles). + +By default, the file points to 2 placeholder tile images: + +* `tile.png` (558x558px): used for `Small`, `Medium` and `Large` tiles. + This image resizes automatically when necessary. +* `tile-wide.png` (558x270px): user for `Wide` tiles. + +Notice that IE11 uses the same images when adding a site to the `favorites`. + +For more in-depth information about the `browserconfig.xml` file, please +see [MSDN](https://msdn.microsoft.com/library/dn320426.aspx). diff --git a/nesting/src/doc/usage.md b/nesting/src/doc/usage.md new file mode 100644 index 0000000..3e3e70a --- /dev/null +++ b/nesting/src/doc/usage.md @@ -0,0 +1,130 @@ +[HTML5 Boilerplate homepage](https://html5boilerplate.com/) | [Documentation +table of contents](TOC.md) + +# Usage + +The most basic usage of HTML5 Boilerplate is to create a static site or simple +app. Once you've downloaded or cloned the project, that process looks something +like this: + +1. Set up the basic structure of the site. +2. Add some content, style, and functionality. +3. Run your site locally to see how it looks. +4. Deploy your site. + +Cool, right? _It is_. That said, the smart defaults, baseline elements, default +attribute values and various other utilities that HTML5 Boilerplate offers can +serve as the foundation for whatever you're interested in building. + +Even the basic use-case of a simple static site can be enhanced by manipulating +the code through an automated build process. Moving up in complexity HTML5 +Boilerplate can be be integrated with whatever front-end framework, CMS or +e-commerce platform you're working with. Mix-and-match to your heart's content. +Use what you need (toss it in a blender if you need to) and discard the rest. +HTML5 Boilerplate is a starting point, not a destination. + +## Basic structure + +A basic HTML5 Boilerplate site initially looks something like this: + +``` +. +├── css +│ ├── main.css +│ └── normalize.css +├── doc +├── img +├── js +│ ├── main.js +│ ├── plugins.js +│ └── vendor +│ ├── jquery.min.js +│ └── modernizr.min.js +├── .editorconfig +├── .htaccess +├── 404.html +├── browserconfig.xml +├── favicon.ico +├── humans.txt +├── icon.png +├── index.html +├── robots.txt +├── site.webmanifest +├── tile.png +└── tile-wide.png +``` + +What follows is a general overview of each major part and how to use them. + +### css + +This directory should contain all your project's CSS files. It includes some +initial CSS to help get you started from a solid foundation. [About the +CSS](css.md). + +### doc + +This directory contains all the HTML5 Boilerplate documentation. You can use it +as the location and basis for your own project's documentation. + +### js + +This directory should contain all your project's JS files. Libraries, plugins, +and custom code can all be included here. It includes some initial JS to help +get you started. [About the JavaScript](js.md). + +### .htaccess + +The default web server configs are for Apache. For more information, please +refer to the [Apache Server Configs +repository](https://github.com/h5bp/server-configs-apache). + +Host your site on a server other than Apache? You're likely to find the +corresponding server configs project listed in our [Server Configs +](https://github.com/h5bp/server-configs/blob/master/README.md) repository. + +### 404.html + +A helpful custom 404 to get you started. + +### browserconfig.xml + +This file contains all settings regarding custom tiles for IE11 and Edge. + +For more info on this topic, please refer to +[MSDN](https://msdn.microsoft.com/library/dn455106.aspx). + +### .editorconfig + +The `.editorconfig` file is provided in order to encourage and help you and +your team to maintain consistent coding styles between different +editors and IDEs. [Read more about the `.editorconfig` file](misc.md#editorconfig). + +### index.html + +This is the default HTML skeleton that should form the basis of all pages on +your site. If you are using a server-side templating framework, then you will +need to integrate this starting HTML with your setup. + +Make sure that you update the URLs for the referenced CSS and JavaScript if you +modify the directory structure at all. + +If you are using Google Universal Analytics, make sure that you edit the +corresponding snippet at the bottom to include your analytics ID. + +### humans.txt + +Edit this file to include the team that worked on your site/app, and the +technology powering it. + +### robots.txt + +Edit this file to include any pages you need hidden from search engines. + +### Icons + +Replace the default `favicon.ico`, `tile.png`, `tile-wide.png` and Apple +Touch Icon with your own. + +If you want to use different Apple Touch Icons for different resolutions please +refer to the [according documentation](extend.md#apple-touch-icons). diff --git a/nesting/src/favicon.ico b/nesting/src/favicon.ico new file mode 100644 index 0000000000000000000000000000000000000000..be74abd69ad6a32de7375df13cab9354798e328f GIT binary patch literal 766 zcmc(dze~eV5XUd2fg&jH87YDYDQKxq1{4b-_ydP-wqS9vgGh17QXQQAwOE{VaBvi* zmu^z9t({y-&1ey8Y_x;?x+`BviV9;aRjMgZ8M*!jgkRrFqSI9;F zHyfX@Az|AvVmn~YWWZP`0&JWEY~BFm?*Vq}VD7&_%x%MP$p`D`4JMC!K|B7pt?Mmp zUJAB7rxMXS6=!P+AtLU9V)J#61WPxwipRXCHO{BJ`l{m53#=t97a!znv~vfmr|AaP zRGIT7#0FyJy3Z*hL{GQp-0TRhX8UzZ)+>%?mK0^goaX4Q;x -- -- + +# THANKS + + + +# TECHNOLOGY COLOPHON + + CSS3, HTML5 + Apache Server Configs, jQuery, Modernizr, Normalize.css diff --git a/nesting/src/icon.png b/nesting/src/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..8a42581d4a2a2a28bee1888835d21ffe4d6378d0 GIT binary patch literal 4029 zcma)9c{CJU+-8i7DZ7xZ8I2`GWQk%1lRYM~MW$%%yP>koG_P!lF_+$k;;moo~MP{oen-d(OT0oZo$ZzjM$1-E*GjiAI^|v4I7_3=9lx2Kq=d`u^#E zCkQ}aCz}pY3=AC44Uk%QpD?bZhX)E73`U%~7cQl85yvVXk(g;IUxeEq-gAn`O#OGr z&lO(^T_yYT*6U?-xaqF>yQNy04owaZTcEWi85lr72tIo@UX7J#rUIBw~lJs={CYso;p)qnluna#RzIviF z@XZ9aXw3jLGsYiRA9QXSBQ0g8nvapf3GwJckKb+73+ey{f{A?pDZc1rRRp8J`eE{{ z12JxDMe;-X+2{~b8vxQ@V~^p|pRo&j-hK3?0HH28U;1{w2ngwys?NrTti=FA`$T!T zWQv0~2?Ezt()hh=Kb*P7^9=EYtP-u>vPa~wP}kMQgxcDviA`8}&)>U$C)PUNAT?UbMk-poy=~^hjqHKnI3X=cZp-P;XD9*pla$REW99w&It*Gp-~k}4%869y z&75l9QBIC77(y%a7F0CpRI&mOI)cS|2G^(9c}R(dLg1mseUuF!Fip+R_aKwl4%%uj zlX2n}oG-heo>Vvj?eAXyA{Zm*=ok=ZaL!#;5M1SRAVx>y)(5UJAJiEcBVWyKd1#y?aD-LnG zMC`33$8jx0dMU7WPc|M#u(wXi0@GOU?K}P^?X3|lR7|v=Vg^wZDpj2x*3|TGKydpR zU&=<7K9K64`B2||j*v}!6l4rM7?yl-rb=#F2`gn$il9VYQWGV$TuoDx$aZ)EpYE|T5oqmIZ63g_SCfJl zigFx_JCR8xHRqU%GC!Uph;`N2VafmeCiuy_~JBx;+d|yA`?-``$ zhxc*=UqF&=VcN!=!6Mvdc`vdMB}S@H6mb6}R5=v^$0bKcrSg|eD>sgOqy1k2yyl%& zUe>(103E_Fj1uq#@8g4s41<|rHi>NOHhSwSA7`dOQP{oc`Xw0Pc*N+%8U68yES-U; zZD2x$?}_*Qlbf#CvoPL?P#r>%tuqvbd{Uvle~>rZ)hFUM?dw5rky$kpLCpTdLll3^ zXZr$pIZO43yL03_r_{_`U&f3_di1vvm2=Dq5u%(@TMZvOn#L}zr;nyajZs%_#BoTb z{)KobkGI6J!cuc{b+j>#?I?=FV`jjuhNE%wA1jIRvPo>r3A$G~rM`w>C!7g58si{? zLQ8)ZXH9z;0)LdYVFei{_T?E!?Y#W{_?@Q?CH@sWk+`(*B>21SVO;MNlO-4sPAqHs zqy^eyDN`i1?}%)k<>Cj?FX!;lSi5Ohfw!PKR1^^YQsn-LFe0R<_2FS$%ELqUkH_)w z3xM!w@1`%GS+_XWq>V_Z?`qzA;z{m-5L9hvCet0g_B=k0x`a{VGG#ftNCb50q?<5t z33^P3jw0V1Yb^JnB^W$+Iv<9Zer(Qsr5}&WRqX3w0VTzegy62fX72hEiI(=sa26q= z)wefEn@1-cNoK+T!UpR>VX$V%IZ*T9T{ne`3EmK=1ULUlS=CxZ3jZ6J2X(B__#H}u zR%riaMEc0t8(8%S(rt8m2$$>%ydzm(N4`JVyEXDAgp`_p2h!NOPYAuf^)Yh_+mH@7`kD{Hn!h2huDs=X zG~T&{anJTiR^{xs*_pZ^Bw5JQaHvkMSh`%)x#y2KN~lGxhZQ066kuiDyDczU=) z&fBobH^_VT$}MzY+-cvejN{j`=Bom;LC^dg61vtWGqz?bUbO0IUbMfUiov zhNP$Hm~$v4zeNX~gU3bVpP1hFP!##}?w8}veUZnmEhf$_RwyTh&?jk`lS)iod{%nN zCDwMY1g2L=AyvH$;l_|j)f4ZjHa``o@d{p7hmQ_{n8C-vuwZ0&mb`0^NU32E-B>SILeRoh9rqKOJZQ{fy^efaIdh8pI0Ccek}X1~4_dfdSAXl^`xW&0 zRLQiIbI$6*qCn{BZ;QMRp;mu3iCD9aa7zZ)4Drx)Q5(XR-wyg>Pj|((eyp6WbVgF$ z=f4MUa-G+&y!!%YktS=44wUQ180A0xVH0AVf?cT3u_f>9t`$|XiE4P}Ev?YOBuK&q@s$TeB3c?&tYER|*Y-)x?(ci?lb^UT`!w*o<%7=&3B4=_t_f z)U}wHZp`VGeJN}EitL8{%XAY#(Z8E_{F}+bnAB$YR`Gsj@|E#tT`IzpYT1_L9eCzT z+iJ^DdaFItX#@mUk>O!+%@FPACreI`7sOT6VT)x$MROOPuQ|SVL*7@#L{NrI|LXLF z1ED|(BYOfO9CjOjWdPk!xbW(usP75SZf1!e$u zS5lD(B2ID&qstc|OmUOAcxZh}V%`mU4=KyXLhdlw!tV<6* z!{({uC}VTS)PvsluA)2QJxqiYg9I5Uw?1unxjts~B&sILmy54e?>c9C*p0nT$JI4FWg+m7gHWD^F3*qM$hS1!6qWsQ6%huv8 zqayPU6s0#dn9h1fzuMO#EGT8y+m#?RTDO%#2U-UL=jlH^$pRN5HoiS)w;sB@IGf#2 z#ZEZ7$jC=^nM*y>UE+BGJk;cO7O>w|W5-s5@b*+-(K_K=ae?I+rj7d-MqL-{cMpB8K z3%N%-Mg;hNFnbRM_p3Ua(Nb2hVjc`*CKg3fhd zK0taD|LFDphqeZHlgbJLoj&Oj{xOlIwJB_cCJP2V8-W^Qg`xFT@lrNhDZn$Tbf)ck~d=i9dg z%e8`DpHvS-%kx_fo<6%YroouuIX2L*)NSzLht1l4SnMnf$z^)`tYwIZ#5+B#RZXuT z7$zh^N0=V#BToN#l4CAT$OpSz8(Vt6vNu(|{=wXs>Bqg6mR7g6aKzMJV`8k`F_B}q zSSYfdE6_?(0C>48wb@fBuYT>b;nG&DIkk0_ey>j<5hmC3OGww&bQiLQ{bc%@kGV7d z&|pHlZxX!hYS{@l|7@t=4p}RiuUaH5H7NxD!nV|KG|U?jA82`&_Bmv6FB zr8HvTl(3*bmo#xpQz>&EWjeIWt|BIi%!CZ5Du?ArFJBd}4D`+lMfAvSGk;B^DcCeW z*N6s~OA`TMK}MnLeuvWm(3I0d%w|{+rBQ6JZ)(pNqE=|*R>1#wcU1^{7w&%nAmUKp z*0RsNE$jO0#B8SvDk$sL^!@PUxKDVZWFVd{&U@r7ue3u!x%(Ub@0{0{kNwJ3m&~t@ zhK$v$xyvmjVJGQ7zl4#X`&tTEjUJ)DPuAre+obOLcP{GUp1WRf6<&SO00boVGwx{} z$C6~jZvWsSU$33wN`3ih6q%X8-Y?!AYXag}(!?_Mdxv(fwVLIDfr4SO4?DuE;Vc18 zV4;LrlF2rm%SWoA{ny?n6h=44=3@RL8=AWe2#QR08P}QUKu(pZEZZQ?u3B>J{Q;MX zh#gLS_au{=AR5bd6qga)JjV=w9`KY}fWNy~Ka0YWymJO{=Yn>mfg2I&fpZ=h9EvF5 zt9qEEYa-1=kf6Hwy8c + + + + + + + + + + + + + + + + + + + +

Hello world! This is HTML5 Boilerplate.

+ + + + + + + + + + + diff --git a/nesting/src/js/main.js b/nesting/src/js/main.js new file mode 100644 index 0000000..e69de29 diff --git a/nesting/src/js/plugins.js b/nesting/src/js/plugins.js new file mode 100644 index 0000000..f887480 --- /dev/null +++ b/nesting/src/js/plugins.js @@ -0,0 +1,24 @@ +// Avoid `console` errors in browsers that lack a console. +(function() { + var method; + var noop = function () {}; + var methods = [ + 'assert', 'clear', 'count', 'debug', 'dir', 'dirxml', 'error', + 'exception', 'group', 'groupCollapsed', 'groupEnd', 'info', 'log', + 'markTimeline', 'profile', 'profileEnd', 'table', 'time', 'timeEnd', + 'timeline', 'timelineEnd', 'timeStamp', 'trace', 'warn' + ]; + var length = methods.length; + var console = (window.console = window.console || {}); + + while (length--) { + method = methods[length]; + + // Only stub undefined methods. + if (!console[method]) { + console[method] = noop; + } + } +}()); + +// Place any jQuery/helper plugins in here. diff --git a/nesting/src/robots.txt b/nesting/src/robots.txt new file mode 100644 index 0000000..d0e5f1b --- /dev/null +++ b/nesting/src/robots.txt @@ -0,0 +1,5 @@ +# www.robotstxt.org/ + +# Allow crawling of all content +User-agent: * +Disallow: diff --git a/nesting/src/site.webmanifest b/nesting/src/site.webmanifest new file mode 100644 index 0000000..a539a68 --- /dev/null +++ b/nesting/src/site.webmanifest @@ -0,0 +1,8 @@ +{ + "icons": [{ + "src": "icon.png", + "sizes": "192x192", + "type": "image/png" + }], + "start_url": "/" +} diff --git a/nesting/src/tile-wide.png b/nesting/src/tile-wide.png new file mode 100644 index 0000000000000000000000000000000000000000..ccd739c7da5f47f6f36c9de6163cab77b534da6a GIT binary patch literal 1854 zcmZ`)X;{+P9!4}nOoMyJ1;#}FD2-joEyO(_Br$T!oJSlK#qEMinxiFZ%2lJ(a$HhV z(~P>gj^wgz*#KsaL{dN)HT+y> z945;bC}d*rW`HmhG>^mF!U@z zU0jzNJN`H|kCHgI@e__1b!V>cz2rNe|~K!jU7}>hz&fJTy-ISoHarB)dMH;p#;gYZTJz ziUP;y60>d2h}OZ35EM9VBr5KpN|nnD8YGA=;6XsRNf_&2iLY1&U}APjK;&F`@F69V z&1WKm5(pbJdoB<2Di;RZUAdRtzo*B^_+2WNHo$GE=OIl&ac*)nsI^zFjg5d`PD^eT zoJiBkJ+q~KFH<)b(scW0=w*;5E;y+fZGYm}J-uPz8_ZL~mU;%GinAJ^o9oS$_n^DU z*|ut977ixgU>48_@zM!U1pK(DN(^YL*c=#Qd6<9JA565s(}%jRTSm0@ihi}allXp1 z8;dQ@MX`xfs~Z5?>tLabX_#8g9ISceZ^B*J%1bzD^?bCz78NUu zPI91_b$(ETz)y0>lspJLEbu3RuBj>sphRRt;A~Bj1RWeXf&H2+(D#RUzp-wgp7cM1 zLj$hcd%SBGfg*ckP_qata%^YW9--vm)ULp~3`rb>zpeM*t4AlXM1c|jt%{%b8c2u& zh-Bf!^D%N>vN7c`+p+i)`T1DSxR~yQo;3RU`SoCKhJeSG$M{{_a1~rg_gY$L@@9@= z*qR<4?SAs4?SK{-!#g!zu+!gUGv#IyHL7W)>3%DT&WT zM)|7XIvix)7_4+R=tqBLiSRl{2Olg+X{6psqiu%eg7+?S1NTk#?AB9TzIgt)0bVu& z#xkb{dYk%%oiSrh8YS^XuMHDQpxn@+M@A4A4ou#X$+9u1rtB|W$-UFBxjeM2Pjp3?Ko7h9f1 z=S!-1pNr5Fvz;~7vje?C-X?;;e5xZv*;)s%B~dY5f!Jw!o zT@c~<>rcX|19q33zxQoET;i+Mxo-qgkpg(<7IW_WdS7JX>;jC!js#?PQj< zDDtc^%BMj=y(~Uj?v6Y=ibEziO>q|Ymm^B!|6SbGPuLkRs>^PG+pket6*^b{Jl8^H zH{BvIQ7>TA1GHR04&59g^rvNjP3Vp)nvE1$c{8N;K(1V>{uRBkvUnC#DAM~)w8dJ>;*v{dWy>0RzDuqWKHdltkfKQj= zdsGx{KS&dEM!n)uy5mmJ&Ks0|6Pu;$@XaGm(v_dKHmU+HZyfT)3^q9Xg6KM8=L># zG_mH$>VP2hZ2yOJTCI?n%*r<~KkG6A=?7ksXbcm*JnBW%U;jAD%C1V-O&(spc;(if NjOOA_X(Y4w{{!#vJbVBE literal 0 HcmV?d00001 diff --git a/nesting/src/tile.png b/nesting/src/tile.png new file mode 100644 index 0000000000000000000000000000000000000000..f820f61a0b95dd42dca6cbd06ca08ed4e1ef098a GIT binary patch literal 3482 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 literal 0 HcmV?d00001 diff --git a/nesting/test/file_content.js b/nesting/test/file_content.js new file mode 100644 index 0000000..4a577ff --- /dev/null +++ b/nesting/test/file_content.js @@ -0,0 +1,85 @@ +/* jshint mocha: true */ + +import assert from 'assert'; +import fs from 'fs'; +import path from 'path'; + +import pkg from './../package.json'; + +const dirs = pkg['h5bp-configs'].directories; + +// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + +function checkString(file, string, done) { + + let character = ''; + let matchFound = false; + let matchedPositions = 0; + const readStream = fs.createReadStream(file, { 'encoding': 'utf8' }); + + readStream.on('close', done); + readStream.on('error', done); + readStream.on('readable', function () { + + // Read file until the string is found + // or the whole file has been read + while (matchFound !== true && + (character = readStream.read(1)) !== null) { + + if (character === string.charAt(matchedPositions)) { + matchedPositions += 1; + } else { + matchedPositions = 0; + } + + if (matchedPositions === string.length) { + matchFound = true; + } + + } + + assert.equal(true, matchFound); + this.close(); + + }); + +} + +// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + +function runTests() { + + const dir = dirs.dist; + + describe(`Test if the files from the "${dir}" directory have the expected content`, () => { + + it('".htaccess" should have the "ErrorDocument..." line uncommented', (done) => { + const string = '\n\nErrorDocument 404 /404.html\n\n'; + checkString(path.resolve(dir, '.htaccess'), string, done); + }); + + it('"index.html" should contain the correct jQuery version in the CDN URL', (done) => { + const string = `code.jquery.com/jquery-${pkg.devDependencies.jquery}.min.js`; + checkString(path.resolve(dir, 'index.html'), string, done); + }); + + it('"index.html" should contain the correct jQuery version in the local URL', (done) => { + const string = `js/vendor/jquery-${pkg.devDependencies.jquery}.min.js`; + checkString(path.resolve(dir, 'index.html'), string, done); + }); + + it('"index.html" should contain the correct Modernizr version in the local URL', (done) => { + const string = `js/vendor/modernizr-${pkg.devDependencies.modernizr}.min.js`; + checkString(path.resolve(dir, 'index.html'), string, done); + }); + + it('"main.css" should contain a custom banner', function (done) { + const string = `/*! HTML5 Boilerplate v${pkg.version} | ${pkg.license} License | ${pkg.homepage} */\n\n/*\n`; + checkString(path.resolve(dir, 'css/main.css'), string, done); + }); + + }); + +} + +runTests(); diff --git a/nesting/test/file_existence.js b/nesting/test/file_existence.js new file mode 100644 index 0000000..8eec5e1 --- /dev/null +++ b/nesting/test/file_existence.js @@ -0,0 +1,135 @@ +/* jshint mocha: true */ + +import assert from 'assert'; +import fs from 'fs'; +import path from 'path'; +import glob from 'glob'; + +import pkg from './../package.json'; + +const dirs = pkg['h5bp-configs'].directories; + +const expectedFilesInArchiveDir = [ + `${pkg.name}_v${pkg.version}.zip` +]; + +const expectedFilesInDistDir = [ + + '.editorconfig', + '.gitattributes', + '.gitignore', + '.htaccess', + '404.html', + 'browserconfig.xml', + + 'css/', // for directories, a `/` character + // should be included at the end + 'css/main.css', + 'css/normalize.css', + + 'doc/', + 'doc/TOC.md', + 'doc/css.md', + 'doc/extend.md', + 'doc/faq.md', + 'doc/html.md', + 'doc/js.md', + 'doc/misc.md', + 'doc/usage.md', + + 'favicon.ico', + 'humans.txt', + + 'icon.png', + + 'img/', + 'img/.gitignore', + + 'index.html', + + 'js/', + 'js/main.js', + 'js/plugins.js', + 'js/vendor/', + `js/vendor/jquery-${pkg.devDependencies.jquery}.min.js`, + `js/vendor/modernizr-${pkg.devDependencies.modernizr}.min.js`, + + 'LICENSE.txt', + 'robots.txt', + 'site.webmanifest', + 'tile-wide.png', + 'tile.png' + +]; + +// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + +function checkFiles(directory, expectedFiles) { + + // Get the list of files from the specified directory + const files = glob.sync('**/*', { + 'cwd': directory, + 'dot': true, // include hidden files + 'mark': true // add a `/` character to directory matches + }); + + // Check if all expected files are present in the + // specified directory, and are of the expected type + expectedFiles.forEach( (file) => { + + let ok = false; + const expectedFileType = (file.slice(-1) !== '/' ? 'regular file' : 'directory'); + + // If file exists + if (files.indexOf(file) !== -1) { + + // Check if the file is of the correct type + if (file.slice(-1) !== '/') { + // Check if the file is really a regular file + ok = fs.statSync(path.resolve(directory, file)).isFile(); + } else { + // Check if the file is a directory + // (Since glob adds the `/` character to directory matches, + // we can simply check if the `/` character is present) + ok = (files[files.indexOf(file)].slice(-1) === '/'); + } + + } + + it(`"${file}" should be present and it should be a ${expectedFileType}`, () =>{ + assert.equal(true, ok); + }); + + }); + + // List all files that should be NOT + // be present in the specified directory + (files.filter( (file) => { + return expectedFiles.indexOf(file) === -1; + })).forEach( (file) => { + it(`"${file}" should NOT be present`, () => { + assert(false); + }); + }); + +} + +// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + +function runTests() { + + describe('Test if all the expected files, and only them, are present in the build directories', () => { + + describe(dirs.archive, () => { + checkFiles(dirs.archive, expectedFilesInArchiveDir); + }); + + describe(dirs.dist, () => { + checkFiles(dirs.dist, expectedFilesInDistDir); + }); + + }); + +} + +runTests();