├── .gitignore ├── Gemfile ├── Gemfile.lock ├── Procfile ├── README.md └── index.html /.gitignore: -------------------------------------------------------------------------------- 1 | _site 2 | .jekyll-cache 3 | node_modules -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinsta/hello-world-jekyll/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinsta/hello-world-jekyll/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: bundle exec jekyll build && ruby -run -e httpd _site -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinsta/hello-world-jekyll/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinsta/hello-world-jekyll/HEAD/index.html --------------------------------------------------------------------------------