├── .config.yml ├── .gitignore ├── LICENSE ├── README.md ├── Vagrantfile ├── _Gemfile ├── _Gemfile.lock ├── _assets ├── images │ ├── favicon.ico │ └── s.gif ├── javascripts │ ├── global.js │ ├── html5ie-print.min.js │ ├── html5ie.min.js │ ├── jquery.min.js │ ├── main.js │ ├── modernizr.min.js │ ├── responsiveImages.js │ └── scrollingSections.js └── stylesheets │ ├── all.scss │ ├── base │ ├── _colors.scss │ ├── _layout.scss │ ├── _misc.scss │ ├── _navigation.scss │ ├── _sprites.scss │ └── _type.scss │ ├── general │ ├── _elements.scss │ ├── _layout.scss │ └── _normalize.scss │ ├── modules │ ├── _breadcrumb.scss │ └── _primary-nav.scss │ ├── old-ie.scss │ └── ui-patterns │ ├── _collapsible-container.scss │ ├── _feature-rotator.scss │ ├── _link-arrow.scss │ ├── _modal.scss │ └── _tabs.scss ├── _build.thor ├── _includes ├── breadcrumb.html └── nav.html ├── _layouts └── default.html ├── _libs ├── add_base_path.rb ├── aws_s3_sync.rb ├── gzip_content.rb ├── html_compress.rb ├── optimize_images.rb ├── resize_2x_images.rb ├── sprite_combine_hover_active.rb └── sprite_factory_vertical_fixed_grid.rb ├── _plugins ├── convert_json.rb ├── convertible.rb ├── ext.rb ├── filters.rb ├── generate_json.rb ├── generate_sitemap.rb ├── json_tag.rb ├── page_extensions.rb ├── page_url_tag.rb ├── site.rb ├── sorted_nav.rb ├── static_file.rb └── yaml_tag.rb ├── manifest.appcache ├── test.html └── testing-json.json /.config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebello/jekyll-perf/HEAD/.config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebello/jekyll-perf/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebello/jekyll-perf/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebello/jekyll-perf/HEAD/README.md -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebello/jekyll-perf/HEAD/Vagrantfile -------------------------------------------------------------------------------- /_Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebello/jekyll-perf/HEAD/_Gemfile -------------------------------------------------------------------------------- /_Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebello/jekyll-perf/HEAD/_Gemfile.lock -------------------------------------------------------------------------------- /_assets/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebello/jekyll-perf/HEAD/_assets/images/favicon.ico -------------------------------------------------------------------------------- /_assets/images/s.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebello/jekyll-perf/HEAD/_assets/images/s.gif -------------------------------------------------------------------------------- /_assets/javascripts/global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebello/jekyll-perf/HEAD/_assets/javascripts/global.js -------------------------------------------------------------------------------- /_assets/javascripts/html5ie-print.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebello/jekyll-perf/HEAD/_assets/javascripts/html5ie-print.min.js -------------------------------------------------------------------------------- /_assets/javascripts/html5ie.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebello/jekyll-perf/HEAD/_assets/javascripts/html5ie.min.js -------------------------------------------------------------------------------- /_assets/javascripts/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebello/jekyll-perf/HEAD/_assets/javascripts/jquery.min.js -------------------------------------------------------------------------------- /_assets/javascripts/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebello/jekyll-perf/HEAD/_assets/javascripts/main.js -------------------------------------------------------------------------------- /_assets/javascripts/modernizr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebello/jekyll-perf/HEAD/_assets/javascripts/modernizr.min.js -------------------------------------------------------------------------------- /_assets/javascripts/responsiveImages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebello/jekyll-perf/HEAD/_assets/javascripts/responsiveImages.js -------------------------------------------------------------------------------- /_assets/javascripts/scrollingSections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebello/jekyll-perf/HEAD/_assets/javascripts/scrollingSections.js -------------------------------------------------------------------------------- /_assets/stylesheets/all.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebello/jekyll-perf/HEAD/_assets/stylesheets/all.scss -------------------------------------------------------------------------------- /_assets/stylesheets/base/_colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebello/jekyll-perf/HEAD/_assets/stylesheets/base/_colors.scss -------------------------------------------------------------------------------- /_assets/stylesheets/base/_layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebello/jekyll-perf/HEAD/_assets/stylesheets/base/_layout.scss -------------------------------------------------------------------------------- /_assets/stylesheets/base/_misc.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebello/jekyll-perf/HEAD/_assets/stylesheets/base/_misc.scss -------------------------------------------------------------------------------- /_assets/stylesheets/base/_navigation.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebello/jekyll-perf/HEAD/_assets/stylesheets/base/_navigation.scss -------------------------------------------------------------------------------- /_assets/stylesheets/base/_sprites.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebello/jekyll-perf/HEAD/_assets/stylesheets/base/_sprites.scss -------------------------------------------------------------------------------- /_assets/stylesheets/base/_type.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebello/jekyll-perf/HEAD/_assets/stylesheets/base/_type.scss -------------------------------------------------------------------------------- /_assets/stylesheets/general/_elements.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebello/jekyll-perf/HEAD/_assets/stylesheets/general/_elements.scss -------------------------------------------------------------------------------- /_assets/stylesheets/general/_layout.scss: -------------------------------------------------------------------------------- 1 | // BASIC GRID LAYOUT -------------------------------------------------------------------------------- /_assets/stylesheets/general/_normalize.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebello/jekyll-perf/HEAD/_assets/stylesheets/general/_normalize.scss -------------------------------------------------------------------------------- /_assets/stylesheets/modules/_breadcrumb.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebello/jekyll-perf/HEAD/_assets/stylesheets/modules/_breadcrumb.scss -------------------------------------------------------------------------------- /_assets/stylesheets/modules/_primary-nav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebello/jekyll-perf/HEAD/_assets/stylesheets/modules/_primary-nav.scss -------------------------------------------------------------------------------- /_assets/stylesheets/old-ie.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebello/jekyll-perf/HEAD/_assets/stylesheets/old-ie.scss -------------------------------------------------------------------------------- /_assets/stylesheets/ui-patterns/_collapsible-container.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebello/jekyll-perf/HEAD/_assets/stylesheets/ui-patterns/_collapsible-container.scss -------------------------------------------------------------------------------- /_assets/stylesheets/ui-patterns/_feature-rotator.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebello/jekyll-perf/HEAD/_assets/stylesheets/ui-patterns/_feature-rotator.scss -------------------------------------------------------------------------------- /_assets/stylesheets/ui-patterns/_link-arrow.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebello/jekyll-perf/HEAD/_assets/stylesheets/ui-patterns/_link-arrow.scss -------------------------------------------------------------------------------- /_assets/stylesheets/ui-patterns/_modal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebello/jekyll-perf/HEAD/_assets/stylesheets/ui-patterns/_modal.scss -------------------------------------------------------------------------------- /_assets/stylesheets/ui-patterns/_tabs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebello/jekyll-perf/HEAD/_assets/stylesheets/ui-patterns/_tabs.scss -------------------------------------------------------------------------------- /_build.thor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebello/jekyll-perf/HEAD/_build.thor -------------------------------------------------------------------------------- /_includes/breadcrumb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebello/jekyll-perf/HEAD/_includes/breadcrumb.html -------------------------------------------------------------------------------- /_includes/nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebello/jekyll-perf/HEAD/_includes/nav.html -------------------------------------------------------------------------------- /_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebello/jekyll-perf/HEAD/_layouts/default.html -------------------------------------------------------------------------------- /_libs/add_base_path.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebello/jekyll-perf/HEAD/_libs/add_base_path.rb -------------------------------------------------------------------------------- /_libs/aws_s3_sync.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebello/jekyll-perf/HEAD/_libs/aws_s3_sync.rb -------------------------------------------------------------------------------- /_libs/gzip_content.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebello/jekyll-perf/HEAD/_libs/gzip_content.rb -------------------------------------------------------------------------------- /_libs/html_compress.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebello/jekyll-perf/HEAD/_libs/html_compress.rb -------------------------------------------------------------------------------- /_libs/optimize_images.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebello/jekyll-perf/HEAD/_libs/optimize_images.rb -------------------------------------------------------------------------------- /_libs/resize_2x_images.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebello/jekyll-perf/HEAD/_libs/resize_2x_images.rb -------------------------------------------------------------------------------- /_libs/sprite_combine_hover_active.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebello/jekyll-perf/HEAD/_libs/sprite_combine_hover_active.rb -------------------------------------------------------------------------------- /_libs/sprite_factory_vertical_fixed_grid.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebello/jekyll-perf/HEAD/_libs/sprite_factory_vertical_fixed_grid.rb -------------------------------------------------------------------------------- /_plugins/convert_json.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebello/jekyll-perf/HEAD/_plugins/convert_json.rb -------------------------------------------------------------------------------- /_plugins/convertible.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebello/jekyll-perf/HEAD/_plugins/convertible.rb -------------------------------------------------------------------------------- /_plugins/ext.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebello/jekyll-perf/HEAD/_plugins/ext.rb -------------------------------------------------------------------------------- /_plugins/filters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebello/jekyll-perf/HEAD/_plugins/filters.rb -------------------------------------------------------------------------------- /_plugins/generate_json.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebello/jekyll-perf/HEAD/_plugins/generate_json.rb -------------------------------------------------------------------------------- /_plugins/generate_sitemap.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebello/jekyll-perf/HEAD/_plugins/generate_sitemap.rb -------------------------------------------------------------------------------- /_plugins/json_tag.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebello/jekyll-perf/HEAD/_plugins/json_tag.rb -------------------------------------------------------------------------------- /_plugins/page_extensions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebello/jekyll-perf/HEAD/_plugins/page_extensions.rb -------------------------------------------------------------------------------- /_plugins/page_url_tag.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebello/jekyll-perf/HEAD/_plugins/page_url_tag.rb -------------------------------------------------------------------------------- /_plugins/site.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebello/jekyll-perf/HEAD/_plugins/site.rb -------------------------------------------------------------------------------- /_plugins/sorted_nav.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebello/jekyll-perf/HEAD/_plugins/sorted_nav.rb -------------------------------------------------------------------------------- /_plugins/static_file.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebello/jekyll-perf/HEAD/_plugins/static_file.rb -------------------------------------------------------------------------------- /_plugins/yaml_tag.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebello/jekyll-perf/HEAD/_plugins/yaml_tag.rb -------------------------------------------------------------------------------- /manifest.appcache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebello/jekyll-perf/HEAD/manifest.appcache -------------------------------------------------------------------------------- /test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebello/jekyll-perf/HEAD/test.html -------------------------------------------------------------------------------- /testing-json.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebello/jekyll-perf/HEAD/testing-json.json --------------------------------------------------------------------------------