├── .github └── FUNDING.yml ├── .gitignore ├── .gitlab-ci.yml ├── CHANGELOG ├── CONTRIBUTING.md ├── Gemfile ├── LICENSE.txt ├── README.md ├── _config.yml ├── _includes ├── footer.html ├── head.html ├── header.html ├── menu.html └── tiles.html ├── _layouts ├── default.html └── page.html ├── _posts ├── 2016-07-16-welcome-to-jekyll.md ├── 2016-07-17-welcome-to-jekyll.md ├── 2016-07-18-welcome-to-jekyll.md ├── 2016-07-19-welcome-to-jekyll.md ├── 2016-07-20-welcome-to-jekyll.md └── 2016-07-21-welcome-to-jekyll.md ├── _sass ├── base │ ├── _page.scss │ └── _typography.scss ├── components │ ├── _box.scss │ ├── _button.scss │ ├── _form.scss │ ├── _icon.scss │ ├── _image.scss │ ├── _list.scss │ ├── _section.scss │ ├── _table.scss │ └── _tiles.scss ├── ie8.scss ├── ie9.scss ├── layout │ ├── _footer.scss │ ├── _header.scss │ ├── _main.scss │ ├── _menu.scss │ └── _wrapper.scss └── libs │ ├── _functions.scss │ ├── _mixins.scss │ ├── _skel.scss │ └── _vars.scss ├── assets ├── css │ ├── font-awesome.min.css │ └── main.scss ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ └── fontawesome-webfont.woff2 └── js │ ├── ie │ ├── html5shiv.js │ └── respond.min.js │ ├── jquery.min.js │ ├── main.js │ ├── skel.min.js │ └── util.js ├── elements.md ├── generic.md ├── images ├── logo.svg ├── phantom.jpg ├── pic01.jpg ├── pic02.jpg ├── pic03.jpg ├── pic04.jpg ├── pic05.jpg ├── pic06.jpg ├── pic07.jpg ├── pic08.jpg ├── pic09.jpg ├── pic10.jpg ├── pic11.jpg ├── pic12.jpg ├── pic13.jpg ├── pic14.jpg └── pic15.jpg ├── index.md └── phantom_jekyll_theme.gemspec /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewbanchich/phantom-jekyll-theme/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewbanchich/phantom-jekyll-theme/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewbanchich/phantom-jekyll-theme/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewbanchich/phantom-jekyll-theme/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewbanchich/phantom-jekyll-theme/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewbanchich/phantom-jekyll-theme/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewbanchich/phantom-jekyll-theme/HEAD/_config.yml -------------------------------------------------------------------------------- /_includes/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewbanchich/phantom-jekyll-theme/HEAD/_includes/footer.html -------------------------------------------------------------------------------- /_includes/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewbanchich/phantom-jekyll-theme/HEAD/_includes/head.html -------------------------------------------------------------------------------- /_includes/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewbanchich/phantom-jekyll-theme/HEAD/_includes/header.html -------------------------------------------------------------------------------- /_includes/menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewbanchich/phantom-jekyll-theme/HEAD/_includes/menu.html -------------------------------------------------------------------------------- /_includes/tiles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewbanchich/phantom-jekyll-theme/HEAD/_includes/tiles.html -------------------------------------------------------------------------------- /_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewbanchich/phantom-jekyll-theme/HEAD/_layouts/default.html -------------------------------------------------------------------------------- /_layouts/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewbanchich/phantom-jekyll-theme/HEAD/_layouts/page.html -------------------------------------------------------------------------------- /_posts/2016-07-16-welcome-to-jekyll.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewbanchich/phantom-jekyll-theme/HEAD/_posts/2016-07-16-welcome-to-jekyll.md -------------------------------------------------------------------------------- /_posts/2016-07-17-welcome-to-jekyll.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewbanchich/phantom-jekyll-theme/HEAD/_posts/2016-07-17-welcome-to-jekyll.md -------------------------------------------------------------------------------- /_posts/2016-07-18-welcome-to-jekyll.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewbanchich/phantom-jekyll-theme/HEAD/_posts/2016-07-18-welcome-to-jekyll.md -------------------------------------------------------------------------------- /_posts/2016-07-19-welcome-to-jekyll.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewbanchich/phantom-jekyll-theme/HEAD/_posts/2016-07-19-welcome-to-jekyll.md -------------------------------------------------------------------------------- /_posts/2016-07-20-welcome-to-jekyll.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewbanchich/phantom-jekyll-theme/HEAD/_posts/2016-07-20-welcome-to-jekyll.md -------------------------------------------------------------------------------- /_posts/2016-07-21-welcome-to-jekyll.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewbanchich/phantom-jekyll-theme/HEAD/_posts/2016-07-21-welcome-to-jekyll.md -------------------------------------------------------------------------------- /_sass/base/_page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewbanchich/phantom-jekyll-theme/HEAD/_sass/base/_page.scss -------------------------------------------------------------------------------- /_sass/base/_typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewbanchich/phantom-jekyll-theme/HEAD/_sass/base/_typography.scss -------------------------------------------------------------------------------- /_sass/components/_box.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewbanchich/phantom-jekyll-theme/HEAD/_sass/components/_box.scss -------------------------------------------------------------------------------- /_sass/components/_button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewbanchich/phantom-jekyll-theme/HEAD/_sass/components/_button.scss -------------------------------------------------------------------------------- /_sass/components/_form.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewbanchich/phantom-jekyll-theme/HEAD/_sass/components/_form.scss -------------------------------------------------------------------------------- /_sass/components/_icon.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewbanchich/phantom-jekyll-theme/HEAD/_sass/components/_icon.scss -------------------------------------------------------------------------------- /_sass/components/_image.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewbanchich/phantom-jekyll-theme/HEAD/_sass/components/_image.scss -------------------------------------------------------------------------------- /_sass/components/_list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewbanchich/phantom-jekyll-theme/HEAD/_sass/components/_list.scss -------------------------------------------------------------------------------- /_sass/components/_section.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewbanchich/phantom-jekyll-theme/HEAD/_sass/components/_section.scss -------------------------------------------------------------------------------- /_sass/components/_table.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewbanchich/phantom-jekyll-theme/HEAD/_sass/components/_table.scss -------------------------------------------------------------------------------- /_sass/components/_tiles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewbanchich/phantom-jekyll-theme/HEAD/_sass/components/_tiles.scss -------------------------------------------------------------------------------- /_sass/ie8.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewbanchich/phantom-jekyll-theme/HEAD/_sass/ie8.scss -------------------------------------------------------------------------------- /_sass/ie9.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewbanchich/phantom-jekyll-theme/HEAD/_sass/ie9.scss -------------------------------------------------------------------------------- /_sass/layout/_footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewbanchich/phantom-jekyll-theme/HEAD/_sass/layout/_footer.scss -------------------------------------------------------------------------------- /_sass/layout/_header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewbanchich/phantom-jekyll-theme/HEAD/_sass/layout/_header.scss -------------------------------------------------------------------------------- /_sass/layout/_main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewbanchich/phantom-jekyll-theme/HEAD/_sass/layout/_main.scss -------------------------------------------------------------------------------- /_sass/layout/_menu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewbanchich/phantom-jekyll-theme/HEAD/_sass/layout/_menu.scss -------------------------------------------------------------------------------- /_sass/layout/_wrapper.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewbanchich/phantom-jekyll-theme/HEAD/_sass/layout/_wrapper.scss -------------------------------------------------------------------------------- /_sass/libs/_functions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewbanchich/phantom-jekyll-theme/HEAD/_sass/libs/_functions.scss -------------------------------------------------------------------------------- /_sass/libs/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewbanchich/phantom-jekyll-theme/HEAD/_sass/libs/_mixins.scss -------------------------------------------------------------------------------- /_sass/libs/_skel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewbanchich/phantom-jekyll-theme/HEAD/_sass/libs/_skel.scss -------------------------------------------------------------------------------- /_sass/libs/_vars.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewbanchich/phantom-jekyll-theme/HEAD/_sass/libs/_vars.scss -------------------------------------------------------------------------------- /assets/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewbanchich/phantom-jekyll-theme/HEAD/assets/css/font-awesome.min.css -------------------------------------------------------------------------------- /assets/css/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewbanchich/phantom-jekyll-theme/HEAD/assets/css/main.scss -------------------------------------------------------------------------------- /assets/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewbanchich/phantom-jekyll-theme/HEAD/assets/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /assets/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewbanchich/phantom-jekyll-theme/HEAD/assets/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /assets/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewbanchich/phantom-jekyll-theme/HEAD/assets/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /assets/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewbanchich/phantom-jekyll-theme/HEAD/assets/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /assets/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewbanchich/phantom-jekyll-theme/HEAD/assets/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /assets/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewbanchich/phantom-jekyll-theme/HEAD/assets/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /assets/js/ie/html5shiv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewbanchich/phantom-jekyll-theme/HEAD/assets/js/ie/html5shiv.js -------------------------------------------------------------------------------- /assets/js/ie/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewbanchich/phantom-jekyll-theme/HEAD/assets/js/ie/respond.min.js -------------------------------------------------------------------------------- /assets/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewbanchich/phantom-jekyll-theme/HEAD/assets/js/jquery.min.js -------------------------------------------------------------------------------- /assets/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewbanchich/phantom-jekyll-theme/HEAD/assets/js/main.js -------------------------------------------------------------------------------- /assets/js/skel.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewbanchich/phantom-jekyll-theme/HEAD/assets/js/skel.min.js -------------------------------------------------------------------------------- /assets/js/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewbanchich/phantom-jekyll-theme/HEAD/assets/js/util.js -------------------------------------------------------------------------------- /elements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewbanchich/phantom-jekyll-theme/HEAD/elements.md -------------------------------------------------------------------------------- /generic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewbanchich/phantom-jekyll-theme/HEAD/generic.md -------------------------------------------------------------------------------- /images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewbanchich/phantom-jekyll-theme/HEAD/images/logo.svg -------------------------------------------------------------------------------- /images/phantom.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewbanchich/phantom-jekyll-theme/HEAD/images/phantom.jpg -------------------------------------------------------------------------------- /images/pic01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewbanchich/phantom-jekyll-theme/HEAD/images/pic01.jpg -------------------------------------------------------------------------------- /images/pic02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewbanchich/phantom-jekyll-theme/HEAD/images/pic02.jpg -------------------------------------------------------------------------------- /images/pic03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewbanchich/phantom-jekyll-theme/HEAD/images/pic03.jpg -------------------------------------------------------------------------------- /images/pic04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewbanchich/phantom-jekyll-theme/HEAD/images/pic04.jpg -------------------------------------------------------------------------------- /images/pic05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewbanchich/phantom-jekyll-theme/HEAD/images/pic05.jpg -------------------------------------------------------------------------------- /images/pic06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewbanchich/phantom-jekyll-theme/HEAD/images/pic06.jpg -------------------------------------------------------------------------------- /images/pic07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewbanchich/phantom-jekyll-theme/HEAD/images/pic07.jpg -------------------------------------------------------------------------------- /images/pic08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewbanchich/phantom-jekyll-theme/HEAD/images/pic08.jpg -------------------------------------------------------------------------------- /images/pic09.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewbanchich/phantom-jekyll-theme/HEAD/images/pic09.jpg -------------------------------------------------------------------------------- /images/pic10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewbanchich/phantom-jekyll-theme/HEAD/images/pic10.jpg -------------------------------------------------------------------------------- /images/pic11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewbanchich/phantom-jekyll-theme/HEAD/images/pic11.jpg -------------------------------------------------------------------------------- /images/pic12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewbanchich/phantom-jekyll-theme/HEAD/images/pic12.jpg -------------------------------------------------------------------------------- /images/pic13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewbanchich/phantom-jekyll-theme/HEAD/images/pic13.jpg -------------------------------------------------------------------------------- /images/pic14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewbanchich/phantom-jekyll-theme/HEAD/images/pic14.jpg -------------------------------------------------------------------------------- /images/pic15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewbanchich/phantom-jekyll-theme/HEAD/images/pic15.jpg -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewbanchich/phantom-jekyll-theme/HEAD/index.md -------------------------------------------------------------------------------- /phantom_jekyll_theme.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewbanchich/phantom-jekyll-theme/HEAD/phantom_jekyll_theme.gemspec --------------------------------------------------------------------------------