├── .gitignore ├── .htaccess ├── 404.html ├── README.md ├── _config.yml ├── _includes ├── analytics.html ├── chromeframe.html ├── head.html └── scripts.html ├── _layouts └── default.html ├── _posts └── 2011-06-09-first-post.md ├── _site ├── 2011 │ └── 06 │ │ └── 09 │ │ └── first-post │ │ └── index.html ├── .htaccess ├── 404.html ├── README.md ├── about ├── apple-touch-icon-114x114-precomposed.png ├── apple-touch-icon-57x57-precomposed.png ├── apple-touch-icon-72x72-precomposed.png ├── apple-touch-icon-precomposed.png ├── apple-touch-icon.png ├── crossdomain.xml ├── css │ └── style.css ├── favicon.ico ├── humans.txt ├── index.html ├── js │ ├── libs │ │ ├── jquery-1.6.2.js │ │ ├── jquery-1.6.2.min.js │ │ ├── modernizr-2.0.min.js │ │ ├── respond.js │ │ └── respond.min.js │ ├── plugins.js │ └── script.js ├── robots.txt ├── scss │ └── style.scss └── test │ ├── index.html │ ├── qunit │ ├── qunit.css │ └── qunit.js │ └── tests.js ├── about.md ├── apple-touch-icon-114x114-precomposed.png ├── apple-touch-icon-57x57-precomposed.png ├── apple-touch-icon-72x72-precomposed.png ├── apple-touch-icon-precomposed.png ├── apple-touch-icon.png ├── config.rb ├── crossdomain.xml ├── css └── style.css ├── favicon.ico ├── humans.txt ├── img └── .gitignore ├── index.md ├── js ├── libs │ ├── jquery-1.6.2.js │ ├── jquery-1.6.2.min.js │ ├── modernizr-2.0.min.js │ ├── respond.js │ └── respond.min.js ├── mylibs │ └── .gitignore ├── plugins.js └── script.js ├── robots.txt ├── scss ├── _base.scss ├── _non-semantic-helpers.scss ├── _print.scss ├── _reset.scss ├── _responsive.scss └── style.scss └── test ├── index.html ├── qunit ├── qunit.css └── qunit.js └── tests.js /.gitignore: -------------------------------------------------------------------------------- 1 | .sass-cache 2 | compass_app_log.txt -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericdfields/HTML5-Boilerplate-Jekyll-Template/HEAD/.htaccess -------------------------------------------------------------------------------- /404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericdfields/HTML5-Boilerplate-Jekyll-Template/HEAD/404.html -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericdfields/HTML5-Boilerplate-Jekyll-Template/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericdfields/HTML5-Boilerplate-Jekyll-Template/HEAD/_config.yml -------------------------------------------------------------------------------- /_includes/analytics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericdfields/HTML5-Boilerplate-Jekyll-Template/HEAD/_includes/analytics.html -------------------------------------------------------------------------------- /_includes/chromeframe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericdfields/HTML5-Boilerplate-Jekyll-Template/HEAD/_includes/chromeframe.html -------------------------------------------------------------------------------- /_includes/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericdfields/HTML5-Boilerplate-Jekyll-Template/HEAD/_includes/head.html -------------------------------------------------------------------------------- /_includes/scripts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericdfields/HTML5-Boilerplate-Jekyll-Template/HEAD/_includes/scripts.html -------------------------------------------------------------------------------- /_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericdfields/HTML5-Boilerplate-Jekyll-Template/HEAD/_layouts/default.html -------------------------------------------------------------------------------- /_posts/2011-06-09-first-post.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericdfields/HTML5-Boilerplate-Jekyll-Template/HEAD/_posts/2011-06-09-first-post.md -------------------------------------------------------------------------------- /_site/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericdfields/HTML5-Boilerplate-Jekyll-Template/HEAD/_site/.htaccess -------------------------------------------------------------------------------- /_site/2011/06/09/first-post/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericdfields/HTML5-Boilerplate-Jekyll-Template/HEAD/_site/2011/06/09/first-post/index.html -------------------------------------------------------------------------------- /_site/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericdfields/HTML5-Boilerplate-Jekyll-Template/HEAD/_site/404.html -------------------------------------------------------------------------------- /_site/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericdfields/HTML5-Boilerplate-Jekyll-Template/HEAD/_site/README.md -------------------------------------------------------------------------------- /_site/about: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericdfields/HTML5-Boilerplate-Jekyll-Template/HEAD/_site/about -------------------------------------------------------------------------------- /_site/apple-touch-icon-114x114-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericdfields/HTML5-Boilerplate-Jekyll-Template/HEAD/_site/apple-touch-icon-114x114-precomposed.png -------------------------------------------------------------------------------- /_site/apple-touch-icon-57x57-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericdfields/HTML5-Boilerplate-Jekyll-Template/HEAD/_site/apple-touch-icon-57x57-precomposed.png -------------------------------------------------------------------------------- /_site/apple-touch-icon-72x72-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericdfields/HTML5-Boilerplate-Jekyll-Template/HEAD/_site/apple-touch-icon-72x72-precomposed.png -------------------------------------------------------------------------------- /_site/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericdfields/HTML5-Boilerplate-Jekyll-Template/HEAD/_site/apple-touch-icon-precomposed.png -------------------------------------------------------------------------------- /_site/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericdfields/HTML5-Boilerplate-Jekyll-Template/HEAD/_site/apple-touch-icon.png -------------------------------------------------------------------------------- /_site/crossdomain.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericdfields/HTML5-Boilerplate-Jekyll-Template/HEAD/_site/crossdomain.xml -------------------------------------------------------------------------------- /_site/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericdfields/HTML5-Boilerplate-Jekyll-Template/HEAD/_site/css/style.css -------------------------------------------------------------------------------- /_site/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericdfields/HTML5-Boilerplate-Jekyll-Template/HEAD/_site/favicon.ico -------------------------------------------------------------------------------- /_site/humans.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericdfields/HTML5-Boilerplate-Jekyll-Template/HEAD/_site/humans.txt -------------------------------------------------------------------------------- /_site/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericdfields/HTML5-Boilerplate-Jekyll-Template/HEAD/_site/index.html -------------------------------------------------------------------------------- /_site/js/libs/jquery-1.6.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericdfields/HTML5-Boilerplate-Jekyll-Template/HEAD/_site/js/libs/jquery-1.6.2.js -------------------------------------------------------------------------------- /_site/js/libs/jquery-1.6.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericdfields/HTML5-Boilerplate-Jekyll-Template/HEAD/_site/js/libs/jquery-1.6.2.min.js -------------------------------------------------------------------------------- /_site/js/libs/modernizr-2.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericdfields/HTML5-Boilerplate-Jekyll-Template/HEAD/_site/js/libs/modernizr-2.0.min.js -------------------------------------------------------------------------------- /_site/js/libs/respond.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericdfields/HTML5-Boilerplate-Jekyll-Template/HEAD/_site/js/libs/respond.js -------------------------------------------------------------------------------- /_site/js/libs/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericdfields/HTML5-Boilerplate-Jekyll-Template/HEAD/_site/js/libs/respond.min.js -------------------------------------------------------------------------------- /_site/js/plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericdfields/HTML5-Boilerplate-Jekyll-Template/HEAD/_site/js/plugins.js -------------------------------------------------------------------------------- /_site/js/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericdfields/HTML5-Boilerplate-Jekyll-Template/HEAD/_site/js/script.js -------------------------------------------------------------------------------- /_site/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericdfields/HTML5-Boilerplate-Jekyll-Template/HEAD/_site/robots.txt -------------------------------------------------------------------------------- /_site/scss/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericdfields/HTML5-Boilerplate-Jekyll-Template/HEAD/_site/scss/style.scss -------------------------------------------------------------------------------- /_site/test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericdfields/HTML5-Boilerplate-Jekyll-Template/HEAD/_site/test/index.html -------------------------------------------------------------------------------- /_site/test/qunit/qunit.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericdfields/HTML5-Boilerplate-Jekyll-Template/HEAD/_site/test/qunit/qunit.css -------------------------------------------------------------------------------- /_site/test/qunit/qunit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericdfields/HTML5-Boilerplate-Jekyll-Template/HEAD/_site/test/qunit/qunit.js -------------------------------------------------------------------------------- /_site/test/tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericdfields/HTML5-Boilerplate-Jekyll-Template/HEAD/_site/test/tests.js -------------------------------------------------------------------------------- /about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericdfields/HTML5-Boilerplate-Jekyll-Template/HEAD/about.md -------------------------------------------------------------------------------- /apple-touch-icon-114x114-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericdfields/HTML5-Boilerplate-Jekyll-Template/HEAD/apple-touch-icon-114x114-precomposed.png -------------------------------------------------------------------------------- /apple-touch-icon-57x57-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericdfields/HTML5-Boilerplate-Jekyll-Template/HEAD/apple-touch-icon-57x57-precomposed.png -------------------------------------------------------------------------------- /apple-touch-icon-72x72-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericdfields/HTML5-Boilerplate-Jekyll-Template/HEAD/apple-touch-icon-72x72-precomposed.png -------------------------------------------------------------------------------- /apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericdfields/HTML5-Boilerplate-Jekyll-Template/HEAD/apple-touch-icon-precomposed.png -------------------------------------------------------------------------------- /apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericdfields/HTML5-Boilerplate-Jekyll-Template/HEAD/apple-touch-icon.png -------------------------------------------------------------------------------- /config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericdfields/HTML5-Boilerplate-Jekyll-Template/HEAD/config.rb -------------------------------------------------------------------------------- /crossdomain.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericdfields/HTML5-Boilerplate-Jekyll-Template/HEAD/crossdomain.xml -------------------------------------------------------------------------------- /css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericdfields/HTML5-Boilerplate-Jekyll-Template/HEAD/css/style.css -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericdfields/HTML5-Boilerplate-Jekyll-Template/HEAD/favicon.ico -------------------------------------------------------------------------------- /humans.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericdfields/HTML5-Boilerplate-Jekyll-Template/HEAD/humans.txt -------------------------------------------------------------------------------- /img/.gitignore: -------------------------------------------------------------------------------- 1 | !.gitignore 2 | 3 | -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericdfields/HTML5-Boilerplate-Jekyll-Template/HEAD/index.md -------------------------------------------------------------------------------- /js/libs/jquery-1.6.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericdfields/HTML5-Boilerplate-Jekyll-Template/HEAD/js/libs/jquery-1.6.2.js -------------------------------------------------------------------------------- /js/libs/jquery-1.6.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericdfields/HTML5-Boilerplate-Jekyll-Template/HEAD/js/libs/jquery-1.6.2.min.js -------------------------------------------------------------------------------- /js/libs/modernizr-2.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericdfields/HTML5-Boilerplate-Jekyll-Template/HEAD/js/libs/modernizr-2.0.min.js -------------------------------------------------------------------------------- /js/libs/respond.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericdfields/HTML5-Boilerplate-Jekyll-Template/HEAD/js/libs/respond.js -------------------------------------------------------------------------------- /js/libs/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericdfields/HTML5-Boilerplate-Jekyll-Template/HEAD/js/libs/respond.min.js -------------------------------------------------------------------------------- /js/mylibs/.gitignore: -------------------------------------------------------------------------------- 1 | !.gitignore 2 | 3 | -------------------------------------------------------------------------------- /js/plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericdfields/HTML5-Boilerplate-Jekyll-Template/HEAD/js/plugins.js -------------------------------------------------------------------------------- /js/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericdfields/HTML5-Boilerplate-Jekyll-Template/HEAD/js/script.js -------------------------------------------------------------------------------- /robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericdfields/HTML5-Boilerplate-Jekyll-Template/HEAD/robots.txt -------------------------------------------------------------------------------- /scss/_base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericdfields/HTML5-Boilerplate-Jekyll-Template/HEAD/scss/_base.scss -------------------------------------------------------------------------------- /scss/_non-semantic-helpers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericdfields/HTML5-Boilerplate-Jekyll-Template/HEAD/scss/_non-semantic-helpers.scss -------------------------------------------------------------------------------- /scss/_print.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericdfields/HTML5-Boilerplate-Jekyll-Template/HEAD/scss/_print.scss -------------------------------------------------------------------------------- /scss/_reset.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericdfields/HTML5-Boilerplate-Jekyll-Template/HEAD/scss/_reset.scss -------------------------------------------------------------------------------- /scss/_responsive.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericdfields/HTML5-Boilerplate-Jekyll-Template/HEAD/scss/_responsive.scss -------------------------------------------------------------------------------- /scss/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericdfields/HTML5-Boilerplate-Jekyll-Template/HEAD/scss/style.scss -------------------------------------------------------------------------------- /test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericdfields/HTML5-Boilerplate-Jekyll-Template/HEAD/test/index.html -------------------------------------------------------------------------------- /test/qunit/qunit.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericdfields/HTML5-Boilerplate-Jekyll-Template/HEAD/test/qunit/qunit.css -------------------------------------------------------------------------------- /test/qunit/qunit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericdfields/HTML5-Boilerplate-Jekyll-Template/HEAD/test/qunit/qunit.js -------------------------------------------------------------------------------- /test/tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericdfields/HTML5-Boilerplate-Jekyll-Template/HEAD/test/tests.js --------------------------------------------------------------------------------