├── .editorconfig ├── .eslintignore ├── .gitattributes ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── cd.yml │ ├── ci.yml │ └── npm-publish.yml ├── .gitignore ├── .tidelift.yml ├── .yo-rc.json ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── __tests__ └── app.js ├── generators └── app │ ├── index.js │ └── templates │ └── my-awesome-site │ ├── .babelrc │ ├── 404.html │ ├── Gemfile │ ├── Gemfile.lock │ ├── LICENSE │ ├── README.md │ ├── _config.yml │ ├── _includes-pug │ └── example.pug │ ├── _includes │ ├── footer.html │ ├── head.html │ └── header.html │ ├── _layouts │ ├── default.html │ ├── page.html │ └── post.html │ ├── _posts │ └── 2019-10-03-welcome-to-jekyll.markdown │ ├── _scripts │ └── main │ ├── about.markdown │ ├── css │ └── main.css │ ├── firebase │ ├── firebaserc │ ├── github │ └── workflows │ │ └── continuous-integration.yml │ ├── gitignore │ ├── gulpfile.babel │ ├── humans.txt │ ├── images │ ├── favicons │ │ ├── apple-touch-icon.png │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ └── safari-pinned-tab.svg │ └── touch │ │ ├── 128x128.jpg │ │ ├── 144x144.jpg │ │ ├── 152x152.jpg │ │ ├── 192x192.jpg │ │ └── 512x512.jpg │ ├── index.html │ ├── lighthouserc.json │ ├── manifest.json │ ├── manifest.webapp │ ├── my-awesome-site.gemspec │ ├── package │ ├── robots.txt │ ├── sass │ ├── _base.sass │ ├── _layout.sass │ ├── _syntax-highlighting.sass │ └── main.sass │ └── scss │ ├── _base.scss │ ├── _layout.scss │ ├── _syntax-highlighting.scss │ └── main.scss ├── images ├── hyper-terminal.png ├── hyper-terminal.psd ├── jekyll-starter-kit.png └── jekyll-starter-kit.psd └── package.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/generator-jekyll-starter-kit/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | coverage 2 | **/templates 3 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [nirgn975] 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/generator-jekyll-starter-kit/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/generator-jekyll-starter-kit/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/generator-jekyll-starter-kit/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/cd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/generator-jekyll-starter-kit/HEAD/.github/workflows/cd.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/generator-jekyll-starter-kit/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/npm-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/generator-jekyll-starter-kit/HEAD/.github/workflows/npm-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/generator-jekyll-starter-kit/HEAD/.gitignore -------------------------------------------------------------------------------- /.tidelift.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/generator-jekyll-starter-kit/HEAD/.tidelift.yml -------------------------------------------------------------------------------- /.yo-rc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/generator-jekyll-starter-kit/HEAD/.yo-rc.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/generator-jekyll-starter-kit/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/generator-jekyll-starter-kit/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/generator-jekyll-starter-kit/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/generator-jekyll-starter-kit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/generator-jekyll-starter-kit/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/generator-jekyll-starter-kit/HEAD/__tests__/app.js -------------------------------------------------------------------------------- /generators/app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/generator-jekyll-starter-kit/HEAD/generators/app/index.js -------------------------------------------------------------------------------- /generators/app/templates/my-awesome-site/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/generator-jekyll-starter-kit/HEAD/generators/app/templates/my-awesome-site/.babelrc -------------------------------------------------------------------------------- /generators/app/templates/my-awesome-site/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/generator-jekyll-starter-kit/HEAD/generators/app/templates/my-awesome-site/404.html -------------------------------------------------------------------------------- /generators/app/templates/my-awesome-site/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/generator-jekyll-starter-kit/HEAD/generators/app/templates/my-awesome-site/Gemfile -------------------------------------------------------------------------------- /generators/app/templates/my-awesome-site/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/generator-jekyll-starter-kit/HEAD/generators/app/templates/my-awesome-site/Gemfile.lock -------------------------------------------------------------------------------- /generators/app/templates/my-awesome-site/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/generator-jekyll-starter-kit/HEAD/generators/app/templates/my-awesome-site/LICENSE -------------------------------------------------------------------------------- /generators/app/templates/my-awesome-site/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/generator-jekyll-starter-kit/HEAD/generators/app/templates/my-awesome-site/README.md -------------------------------------------------------------------------------- /generators/app/templates/my-awesome-site/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/generator-jekyll-starter-kit/HEAD/generators/app/templates/my-awesome-site/_config.yml -------------------------------------------------------------------------------- /generators/app/templates/my-awesome-site/_includes-pug/example.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/generator-jekyll-starter-kit/HEAD/generators/app/templates/my-awesome-site/_includes-pug/example.pug -------------------------------------------------------------------------------- /generators/app/templates/my-awesome-site/_includes/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/generator-jekyll-starter-kit/HEAD/generators/app/templates/my-awesome-site/_includes/footer.html -------------------------------------------------------------------------------- /generators/app/templates/my-awesome-site/_includes/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/generator-jekyll-starter-kit/HEAD/generators/app/templates/my-awesome-site/_includes/head.html -------------------------------------------------------------------------------- /generators/app/templates/my-awesome-site/_includes/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/generator-jekyll-starter-kit/HEAD/generators/app/templates/my-awesome-site/_includes/header.html -------------------------------------------------------------------------------- /generators/app/templates/my-awesome-site/_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/generator-jekyll-starter-kit/HEAD/generators/app/templates/my-awesome-site/_layouts/default.html -------------------------------------------------------------------------------- /generators/app/templates/my-awesome-site/_layouts/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/generator-jekyll-starter-kit/HEAD/generators/app/templates/my-awesome-site/_layouts/page.html -------------------------------------------------------------------------------- /generators/app/templates/my-awesome-site/_layouts/post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/generator-jekyll-starter-kit/HEAD/generators/app/templates/my-awesome-site/_layouts/post.html -------------------------------------------------------------------------------- /generators/app/templates/my-awesome-site/_posts/2019-10-03-welcome-to-jekyll.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/generator-jekyll-starter-kit/HEAD/generators/app/templates/my-awesome-site/_posts/2019-10-03-welcome-to-jekyll.markdown -------------------------------------------------------------------------------- /generators/app/templates/my-awesome-site/_scripts/main: -------------------------------------------------------------------------------- 1 | // Your code goes here. 2 | -------------------------------------------------------------------------------- /generators/app/templates/my-awesome-site/about.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/generator-jekyll-starter-kit/HEAD/generators/app/templates/my-awesome-site/about.markdown -------------------------------------------------------------------------------- /generators/app/templates/my-awesome-site/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/generator-jekyll-starter-kit/HEAD/generators/app/templates/my-awesome-site/css/main.css -------------------------------------------------------------------------------- /generators/app/templates/my-awesome-site/firebase: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/generator-jekyll-starter-kit/HEAD/generators/app/templates/my-awesome-site/firebase -------------------------------------------------------------------------------- /generators/app/templates/my-awesome-site/firebaserc: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /generators/app/templates/my-awesome-site/github/workflows/continuous-integration.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/generator-jekyll-starter-kit/HEAD/generators/app/templates/my-awesome-site/github/workflows/continuous-integration.yml -------------------------------------------------------------------------------- /generators/app/templates/my-awesome-site/gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/generator-jekyll-starter-kit/HEAD/generators/app/templates/my-awesome-site/gitignore -------------------------------------------------------------------------------- /generators/app/templates/my-awesome-site/gulpfile.babel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/generator-jekyll-starter-kit/HEAD/generators/app/templates/my-awesome-site/gulpfile.babel -------------------------------------------------------------------------------- /generators/app/templates/my-awesome-site/humans.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/generator-jekyll-starter-kit/HEAD/generators/app/templates/my-awesome-site/humans.txt -------------------------------------------------------------------------------- /generators/app/templates/my-awesome-site/images/favicons/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/generator-jekyll-starter-kit/HEAD/generators/app/templates/my-awesome-site/images/favicons/apple-touch-icon.png -------------------------------------------------------------------------------- /generators/app/templates/my-awesome-site/images/favicons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/generator-jekyll-starter-kit/HEAD/generators/app/templates/my-awesome-site/images/favicons/favicon-16x16.png -------------------------------------------------------------------------------- /generators/app/templates/my-awesome-site/images/favicons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/generator-jekyll-starter-kit/HEAD/generators/app/templates/my-awesome-site/images/favicons/favicon-32x32.png -------------------------------------------------------------------------------- /generators/app/templates/my-awesome-site/images/favicons/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/generator-jekyll-starter-kit/HEAD/generators/app/templates/my-awesome-site/images/favicons/safari-pinned-tab.svg -------------------------------------------------------------------------------- /generators/app/templates/my-awesome-site/images/touch/128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/generator-jekyll-starter-kit/HEAD/generators/app/templates/my-awesome-site/images/touch/128x128.jpg -------------------------------------------------------------------------------- /generators/app/templates/my-awesome-site/images/touch/144x144.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/generator-jekyll-starter-kit/HEAD/generators/app/templates/my-awesome-site/images/touch/144x144.jpg -------------------------------------------------------------------------------- /generators/app/templates/my-awesome-site/images/touch/152x152.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/generator-jekyll-starter-kit/HEAD/generators/app/templates/my-awesome-site/images/touch/152x152.jpg -------------------------------------------------------------------------------- /generators/app/templates/my-awesome-site/images/touch/192x192.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/generator-jekyll-starter-kit/HEAD/generators/app/templates/my-awesome-site/images/touch/192x192.jpg -------------------------------------------------------------------------------- /generators/app/templates/my-awesome-site/images/touch/512x512.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/generator-jekyll-starter-kit/HEAD/generators/app/templates/my-awesome-site/images/touch/512x512.jpg -------------------------------------------------------------------------------- /generators/app/templates/my-awesome-site/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/generator-jekyll-starter-kit/HEAD/generators/app/templates/my-awesome-site/index.html -------------------------------------------------------------------------------- /generators/app/templates/my-awesome-site/lighthouserc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/generator-jekyll-starter-kit/HEAD/generators/app/templates/my-awesome-site/lighthouserc.json -------------------------------------------------------------------------------- /generators/app/templates/my-awesome-site/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/generator-jekyll-starter-kit/HEAD/generators/app/templates/my-awesome-site/manifest.json -------------------------------------------------------------------------------- /generators/app/templates/my-awesome-site/manifest.webapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/generator-jekyll-starter-kit/HEAD/generators/app/templates/my-awesome-site/manifest.webapp -------------------------------------------------------------------------------- /generators/app/templates/my-awesome-site/my-awesome-site.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/generator-jekyll-starter-kit/HEAD/generators/app/templates/my-awesome-site/my-awesome-site.gemspec -------------------------------------------------------------------------------- /generators/app/templates/my-awesome-site/package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/generator-jekyll-starter-kit/HEAD/generators/app/templates/my-awesome-site/package -------------------------------------------------------------------------------- /generators/app/templates/my-awesome-site/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/generator-jekyll-starter-kit/HEAD/generators/app/templates/my-awesome-site/robots.txt -------------------------------------------------------------------------------- /generators/app/templates/my-awesome-site/sass/_base.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/generator-jekyll-starter-kit/HEAD/generators/app/templates/my-awesome-site/sass/_base.sass -------------------------------------------------------------------------------- /generators/app/templates/my-awesome-site/sass/_layout.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/generator-jekyll-starter-kit/HEAD/generators/app/templates/my-awesome-site/sass/_layout.sass -------------------------------------------------------------------------------- /generators/app/templates/my-awesome-site/sass/_syntax-highlighting.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/generator-jekyll-starter-kit/HEAD/generators/app/templates/my-awesome-site/sass/_syntax-highlighting.sass -------------------------------------------------------------------------------- /generators/app/templates/my-awesome-site/sass/main.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/generator-jekyll-starter-kit/HEAD/generators/app/templates/my-awesome-site/sass/main.sass -------------------------------------------------------------------------------- /generators/app/templates/my-awesome-site/scss/_base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/generator-jekyll-starter-kit/HEAD/generators/app/templates/my-awesome-site/scss/_base.scss -------------------------------------------------------------------------------- /generators/app/templates/my-awesome-site/scss/_layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/generator-jekyll-starter-kit/HEAD/generators/app/templates/my-awesome-site/scss/_layout.scss -------------------------------------------------------------------------------- /generators/app/templates/my-awesome-site/scss/_syntax-highlighting.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/generator-jekyll-starter-kit/HEAD/generators/app/templates/my-awesome-site/scss/_syntax-highlighting.scss -------------------------------------------------------------------------------- /generators/app/templates/my-awesome-site/scss/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/generator-jekyll-starter-kit/HEAD/generators/app/templates/my-awesome-site/scss/main.scss -------------------------------------------------------------------------------- /images/hyper-terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/generator-jekyll-starter-kit/HEAD/images/hyper-terminal.png -------------------------------------------------------------------------------- /images/hyper-terminal.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/generator-jekyll-starter-kit/HEAD/images/hyper-terminal.psd -------------------------------------------------------------------------------- /images/jekyll-starter-kit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/generator-jekyll-starter-kit/HEAD/images/jekyll-starter-kit.png -------------------------------------------------------------------------------- /images/jekyll-starter-kit.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/generator-jekyll-starter-kit/HEAD/images/jekyll-starter-kit.psd -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirgn975/generator-jekyll-starter-kit/HEAD/package.json --------------------------------------------------------------------------------