├── .gitignore ├── Gemfile ├── Gemfile.lock ├── README.md ├── _config.yml ├── _layouts └── encrypted.html ├── _posts ├── 2018-01-28-public-post.markdown └── 2018-02-04-super-secret-sauce.markdown ├── _protected └── 2018-02-04-super-secret-sauce.markdown ├── demo.gif ├── gulpfile.js ├── index.md └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | _site 2 | .sass-cache 3 | .jekyll-metadata 4 | .DS_Store 5 | node_modules 6 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilykonings/jekyll-password-protect/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilykonings/jekyll-password-protect/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilykonings/jekyll-password-protect/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilykonings/jekyll-password-protect/HEAD/_config.yml -------------------------------------------------------------------------------- /_layouts/encrypted.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilykonings/jekyll-password-protect/HEAD/_layouts/encrypted.html -------------------------------------------------------------------------------- /_posts/2018-01-28-public-post.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilykonings/jekyll-password-protect/HEAD/_posts/2018-01-28-public-post.markdown -------------------------------------------------------------------------------- /_posts/2018-02-04-super-secret-sauce.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilykonings/jekyll-password-protect/HEAD/_posts/2018-02-04-super-secret-sauce.markdown -------------------------------------------------------------------------------- /_protected/2018-02-04-super-secret-sauce.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilykonings/jekyll-password-protect/HEAD/_protected/2018-02-04-super-secret-sauce.markdown -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilykonings/jekyll-password-protect/HEAD/demo.gif -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilykonings/jekyll-password-protect/HEAD/gulpfile.js -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: home 3 | --- 4 | 5 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilykonings/jekyll-password-protect/HEAD/package.json --------------------------------------------------------------------------------