├── .bowerrc ├── .editorconfig ├── .gitattributes ├── .gitignore ├── .jshintrc ├── LICENSE ├── README.md ├── app ├── .htaccess ├── 404.html ├── favicon.ico ├── index.html ├── robots.txt ├── scripts │ └── main.js └── styles │ └── main.css ├── bower.json ├── dist ├── .htaccess ├── 404.html ├── favicon.ico ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff ├── index-critical.html ├── index.html ├── robots.txt ├── scripts │ ├── main.js │ ├── plugins.js │ └── vendor.js └── styles │ └── main.css ├── gulpfile.js ├── output ├── critical │ ├── .htaccess │ ├── 404.html │ ├── favicon.ico │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff │ ├── index.html │ ├── robots.txt │ ├── scripts │ │ ├── main.js │ │ ├── plugins.js │ │ └── vendor.js │ └── styles │ │ └── main.css └── normal │ ├── .htaccess │ ├── 404.html │ ├── favicon.ico │ ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff │ ├── index.html │ ├── robots.txt │ ├── scripts │ ├── main.js │ ├── plugins.js │ └── vendor.js │ └── styles │ └── main.css ├── package.json └── test ├── .bowerrc ├── bower.json ├── index.html └── spec └── test.js /.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "app/bower_components" 3 | } 4 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/critical-path-css-demo/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/critical-path-css-demo/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/critical-path-css-demo/HEAD/.jshintrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/critical-path-css-demo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/critical-path-css-demo/HEAD/README.md -------------------------------------------------------------------------------- /app/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/critical-path-css-demo/HEAD/app/.htaccess -------------------------------------------------------------------------------- /app/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/critical-path-css-demo/HEAD/app/404.html -------------------------------------------------------------------------------- /app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/critical-path-css-demo/HEAD/app/favicon.ico -------------------------------------------------------------------------------- /app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/critical-path-css-demo/HEAD/app/index.html -------------------------------------------------------------------------------- /app/robots.txt: -------------------------------------------------------------------------------- 1 | # robotstxt.org/ 2 | 3 | User-agent: * 4 | -------------------------------------------------------------------------------- /app/scripts/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/critical-path-css-demo/HEAD/app/scripts/main.js -------------------------------------------------------------------------------- /app/styles/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/critical-path-css-demo/HEAD/app/styles/main.css -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/critical-path-css-demo/HEAD/bower.json -------------------------------------------------------------------------------- /dist/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/critical-path-css-demo/HEAD/dist/.htaccess -------------------------------------------------------------------------------- /dist/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/critical-path-css-demo/HEAD/dist/404.html -------------------------------------------------------------------------------- /dist/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/critical-path-css-demo/HEAD/dist/favicon.ico -------------------------------------------------------------------------------- /dist/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/critical-path-css-demo/HEAD/dist/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /dist/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/critical-path-css-demo/HEAD/dist/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /dist/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/critical-path-css-demo/HEAD/dist/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /dist/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/critical-path-css-demo/HEAD/dist/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /dist/index-critical.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/critical-path-css-demo/HEAD/dist/index-critical.html -------------------------------------------------------------------------------- /dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/critical-path-css-demo/HEAD/dist/index.html -------------------------------------------------------------------------------- /dist/robots.txt: -------------------------------------------------------------------------------- 1 | # robotstxt.org/ 2 | 3 | User-agent: * 4 | -------------------------------------------------------------------------------- /dist/scripts/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/critical-path-css-demo/HEAD/dist/scripts/main.js -------------------------------------------------------------------------------- /dist/scripts/plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/critical-path-css-demo/HEAD/dist/scripts/plugins.js -------------------------------------------------------------------------------- /dist/scripts/vendor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/critical-path-css-demo/HEAD/dist/scripts/vendor.js -------------------------------------------------------------------------------- /dist/styles/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/critical-path-css-demo/HEAD/dist/styles/main.css -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/critical-path-css-demo/HEAD/gulpfile.js -------------------------------------------------------------------------------- /output/critical/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/critical-path-css-demo/HEAD/output/critical/.htaccess -------------------------------------------------------------------------------- /output/critical/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/critical-path-css-demo/HEAD/output/critical/404.html -------------------------------------------------------------------------------- /output/critical/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/critical-path-css-demo/HEAD/output/critical/favicon.ico -------------------------------------------------------------------------------- /output/critical/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/critical-path-css-demo/HEAD/output/critical/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /output/critical/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/critical-path-css-demo/HEAD/output/critical/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /output/critical/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/critical-path-css-demo/HEAD/output/critical/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /output/critical/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/critical-path-css-demo/HEAD/output/critical/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /output/critical/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/critical-path-css-demo/HEAD/output/critical/index.html -------------------------------------------------------------------------------- /output/critical/robots.txt: -------------------------------------------------------------------------------- 1 | # robotstxt.org/ 2 | 3 | User-agent: * 4 | -------------------------------------------------------------------------------- /output/critical/scripts/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/critical-path-css-demo/HEAD/output/critical/scripts/main.js -------------------------------------------------------------------------------- /output/critical/scripts/plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/critical-path-css-demo/HEAD/output/critical/scripts/plugins.js -------------------------------------------------------------------------------- /output/critical/scripts/vendor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/critical-path-css-demo/HEAD/output/critical/scripts/vendor.js -------------------------------------------------------------------------------- /output/critical/styles/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/critical-path-css-demo/HEAD/output/critical/styles/main.css -------------------------------------------------------------------------------- /output/normal/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/critical-path-css-demo/HEAD/output/normal/.htaccess -------------------------------------------------------------------------------- /output/normal/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/critical-path-css-demo/HEAD/output/normal/404.html -------------------------------------------------------------------------------- /output/normal/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/critical-path-css-demo/HEAD/output/normal/favicon.ico -------------------------------------------------------------------------------- /output/normal/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/critical-path-css-demo/HEAD/output/normal/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /output/normal/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/critical-path-css-demo/HEAD/output/normal/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /output/normal/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/critical-path-css-demo/HEAD/output/normal/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /output/normal/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/critical-path-css-demo/HEAD/output/normal/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /output/normal/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/critical-path-css-demo/HEAD/output/normal/index.html -------------------------------------------------------------------------------- /output/normal/robots.txt: -------------------------------------------------------------------------------- 1 | # robotstxt.org/ 2 | 3 | User-agent: * 4 | -------------------------------------------------------------------------------- /output/normal/scripts/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/critical-path-css-demo/HEAD/output/normal/scripts/main.js -------------------------------------------------------------------------------- /output/normal/scripts/plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/critical-path-css-demo/HEAD/output/normal/scripts/plugins.js -------------------------------------------------------------------------------- /output/normal/scripts/vendor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/critical-path-css-demo/HEAD/output/normal/scripts/vendor.js -------------------------------------------------------------------------------- /output/normal/styles/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/critical-path-css-demo/HEAD/output/normal/styles/main.css -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/critical-path-css-demo/HEAD/package.json -------------------------------------------------------------------------------- /test/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "bower_components" 3 | } 4 | -------------------------------------------------------------------------------- /test/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/critical-path-css-demo/HEAD/test/bower.json -------------------------------------------------------------------------------- /test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/critical-path-css-demo/HEAD/test/index.html -------------------------------------------------------------------------------- /test/spec/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/critical-path-css-demo/HEAD/test/spec/test.js --------------------------------------------------------------------------------