├── .gitignore ├── .travis.yml ├── Gemfile ├── INSTALL.md ├── LICENSE ├── README.md ├── _config.yml ├── _layouts ├── default.html └── listings.html ├── _sass ├── colorspaces.scss ├── fonts.scss ├── jekyll-theme-dracula.scss ├── mixins.scss ├── normalize.scss ├── rouge-dracula.scss └── variables.scss ├── assets ├── css │ ├── ie.scss │ └── style.scss ├── fonts │ ├── noto-serif-v6-latin-700.eot │ ├── noto-serif-v6-latin-700.svg │ ├── noto-serif-v6-latin-700.ttf │ ├── noto-serif-v6-latin-700.woff │ ├── noto-serif-v6-latin-700.woff2 │ ├── source-sans-pro-v11-latin-300.eot │ ├── source-sans-pro-v11-latin-300.svg │ ├── source-sans-pro-v11-latin-300.ttf │ ├── source-sans-pro-v11-latin-300.woff │ ├── source-sans-pro-v11-latin-300.woff2 │ ├── source-sans-pro-v11-latin-600.eot │ ├── source-sans-pro-v11-latin-600.svg │ ├── source-sans-pro-v11-latin-600.ttf │ ├── source-sans-pro-v11-latin-600.woff │ ├── source-sans-pro-v11-latin-600.woff2 │ ├── source-sans-pro-v11-latin-regular.eot │ ├── source-sans-pro-v11-latin-regular.svg │ ├── source-sans-pro-v11-latin-regular.ttf │ ├── source-sans-pro-v11-latin-regular.woff │ └── source-sans-pro-v11-latin-regular.woff2 ├── images │ ├── bullet.png │ ├── candies.png │ └── hr.gif └── js │ └── respond.js ├── docs └── listings-pages.md ├── index.md ├── jekyll-theme-dracula.gemspec ├── samples └── listings-page.md ├── screenshot.png └── script ├── bootstrap ├── cibuild └── release /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracula/gh-pages/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracula/gh-pages/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracula/gh-pages/HEAD/Gemfile -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracula/gh-pages/HEAD/INSTALL.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracula/gh-pages/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracula/gh-pages/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracula/gh-pages/HEAD/_config.yml -------------------------------------------------------------------------------- /_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracula/gh-pages/HEAD/_layouts/default.html -------------------------------------------------------------------------------- /_layouts/listings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracula/gh-pages/HEAD/_layouts/listings.html -------------------------------------------------------------------------------- /_sass/colorspaces.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracula/gh-pages/HEAD/_sass/colorspaces.scss -------------------------------------------------------------------------------- /_sass/fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracula/gh-pages/HEAD/_sass/fonts.scss -------------------------------------------------------------------------------- /_sass/jekyll-theme-dracula.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracula/gh-pages/HEAD/_sass/jekyll-theme-dracula.scss -------------------------------------------------------------------------------- /_sass/mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracula/gh-pages/HEAD/_sass/mixins.scss -------------------------------------------------------------------------------- /_sass/normalize.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracula/gh-pages/HEAD/_sass/normalize.scss -------------------------------------------------------------------------------- /_sass/rouge-dracula.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracula/gh-pages/HEAD/_sass/rouge-dracula.scss -------------------------------------------------------------------------------- /_sass/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracula/gh-pages/HEAD/_sass/variables.scss -------------------------------------------------------------------------------- /assets/css/ie.scss: -------------------------------------------------------------------------------- 1 | nav { 2 | display: none; 3 | } -------------------------------------------------------------------------------- /assets/css/style.scss: -------------------------------------------------------------------------------- 1 | --- 2 | --- 3 | 4 | @import "jekyll-theme-dracula"; 5 | -------------------------------------------------------------------------------- /assets/fonts/noto-serif-v6-latin-700.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracula/gh-pages/HEAD/assets/fonts/noto-serif-v6-latin-700.eot -------------------------------------------------------------------------------- /assets/fonts/noto-serif-v6-latin-700.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracula/gh-pages/HEAD/assets/fonts/noto-serif-v6-latin-700.svg -------------------------------------------------------------------------------- /assets/fonts/noto-serif-v6-latin-700.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracula/gh-pages/HEAD/assets/fonts/noto-serif-v6-latin-700.ttf -------------------------------------------------------------------------------- /assets/fonts/noto-serif-v6-latin-700.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracula/gh-pages/HEAD/assets/fonts/noto-serif-v6-latin-700.woff -------------------------------------------------------------------------------- /assets/fonts/noto-serif-v6-latin-700.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracula/gh-pages/HEAD/assets/fonts/noto-serif-v6-latin-700.woff2 -------------------------------------------------------------------------------- /assets/fonts/source-sans-pro-v11-latin-300.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracula/gh-pages/HEAD/assets/fonts/source-sans-pro-v11-latin-300.eot -------------------------------------------------------------------------------- /assets/fonts/source-sans-pro-v11-latin-300.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracula/gh-pages/HEAD/assets/fonts/source-sans-pro-v11-latin-300.svg -------------------------------------------------------------------------------- /assets/fonts/source-sans-pro-v11-latin-300.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracula/gh-pages/HEAD/assets/fonts/source-sans-pro-v11-latin-300.ttf -------------------------------------------------------------------------------- /assets/fonts/source-sans-pro-v11-latin-300.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracula/gh-pages/HEAD/assets/fonts/source-sans-pro-v11-latin-300.woff -------------------------------------------------------------------------------- /assets/fonts/source-sans-pro-v11-latin-300.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracula/gh-pages/HEAD/assets/fonts/source-sans-pro-v11-latin-300.woff2 -------------------------------------------------------------------------------- /assets/fonts/source-sans-pro-v11-latin-600.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracula/gh-pages/HEAD/assets/fonts/source-sans-pro-v11-latin-600.eot -------------------------------------------------------------------------------- /assets/fonts/source-sans-pro-v11-latin-600.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracula/gh-pages/HEAD/assets/fonts/source-sans-pro-v11-latin-600.svg -------------------------------------------------------------------------------- /assets/fonts/source-sans-pro-v11-latin-600.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracula/gh-pages/HEAD/assets/fonts/source-sans-pro-v11-latin-600.ttf -------------------------------------------------------------------------------- /assets/fonts/source-sans-pro-v11-latin-600.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracula/gh-pages/HEAD/assets/fonts/source-sans-pro-v11-latin-600.woff -------------------------------------------------------------------------------- /assets/fonts/source-sans-pro-v11-latin-600.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracula/gh-pages/HEAD/assets/fonts/source-sans-pro-v11-latin-600.woff2 -------------------------------------------------------------------------------- /assets/fonts/source-sans-pro-v11-latin-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracula/gh-pages/HEAD/assets/fonts/source-sans-pro-v11-latin-regular.eot -------------------------------------------------------------------------------- /assets/fonts/source-sans-pro-v11-latin-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracula/gh-pages/HEAD/assets/fonts/source-sans-pro-v11-latin-regular.svg -------------------------------------------------------------------------------- /assets/fonts/source-sans-pro-v11-latin-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracula/gh-pages/HEAD/assets/fonts/source-sans-pro-v11-latin-regular.ttf -------------------------------------------------------------------------------- /assets/fonts/source-sans-pro-v11-latin-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracula/gh-pages/HEAD/assets/fonts/source-sans-pro-v11-latin-regular.woff -------------------------------------------------------------------------------- /assets/fonts/source-sans-pro-v11-latin-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracula/gh-pages/HEAD/assets/fonts/source-sans-pro-v11-latin-regular.woff2 -------------------------------------------------------------------------------- /assets/images/bullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracula/gh-pages/HEAD/assets/images/bullet.png -------------------------------------------------------------------------------- /assets/images/candies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracula/gh-pages/HEAD/assets/images/candies.png -------------------------------------------------------------------------------- /assets/images/hr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracula/gh-pages/HEAD/assets/images/hr.gif -------------------------------------------------------------------------------- /assets/js/respond.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracula/gh-pages/HEAD/assets/js/respond.js -------------------------------------------------------------------------------- /docs/listings-pages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracula/gh-pages/HEAD/docs/listings-pages.md -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracula/gh-pages/HEAD/index.md -------------------------------------------------------------------------------- /jekyll-theme-dracula.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracula/gh-pages/HEAD/jekyll-theme-dracula.gemspec -------------------------------------------------------------------------------- /samples/listings-page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracula/gh-pages/HEAD/samples/listings-page.md -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracula/gh-pages/HEAD/screenshot.png -------------------------------------------------------------------------------- /script/bootstrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracula/gh-pages/HEAD/script/bootstrap -------------------------------------------------------------------------------- /script/cibuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracula/gh-pages/HEAD/script/cibuild -------------------------------------------------------------------------------- /script/release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracula/gh-pages/HEAD/script/release --------------------------------------------------------------------------------