5. Create the following folders for your future contents: `_blog`, `_drafts`, `_pages`, `_posts`, and `_private`. The latter is for private notes which will only be rendered in [local mode](#local-mode).
### <a id="how-to-create-new-jekyll-website"></a>How to create a new jekyll website
```sh
$ docker run --rm -it -v "$PWD:/srv/jekyll" jekyll/jekyll:3.8 jekyll new .
```
### How to backup previous configs
`isabelline` needs the following files placed in the root directory of your jekyll website:
`index.html`
: This is the entry page for the website. It lists out blogs and posts grouped by year.
`_config.yaml`
: Global configurations for the website.
`Gemfile`
: A Gemfile is a file which is used for describing gem dependencies for Ruby programs. A gem is a collection of Ruby code that is extracted into a “collection” which can be called later.
`404.html`
: A page that is shown when the target for a link isnt available. Here's an example of a [404 link](/broken-link).
- USER INSTALLATION DIRECTORY: /root/.gem/ruby/2.6.0
- RUBY EXECUTABLE: /usr/local/bin/ruby
- GIT EXECUTABLE: /usr/bin/git
- EXECUTABLE DIRECTORY: /usr/gem/bin
- SPEC CACHE DIRECTORY: /root/.gem/specs
- SYSTEM CONFIGURATION DIRECTORY: /usr/local/etc
- RUBYGEMS PLATFORMS:
- ruby
- x86_64-linux
- GEM PATHS:
- /usr/gem
- /root/.gem/ruby/2.6.0
- /usr/local/lib/ruby/gems/2.6.0
- GEM CONFIGURATION:
- :update_sources => true
- :verbose => true
- :backtrace => false
- :bulk_threshold => 1000
- "install" => "--no-document"
- "update" => "--no-document"
- "gem" => "--no-ri --no-rdoc"
- REMOTE SOURCES:
- https://rubygems.org/
- SHELL PATH:
- /usr/jekyll/bin
- /usr/local/bundle/bin
- /usr/local/bundle/gems/bin
- /usr/local/sbin
- /usr/local/bin
- /usr/sbin
- /usr/bin
- /sbin
- /bin
```
And to run bundle:
```sh
$ docker-compose run bundle help
[ .. skipped budnle help output for brevity .. ]
```
Of course if docker isn't your thing, conventional development lifecycle is perfectly usable.
### Basic customization
Simply follow instructions in `_config.yaml`.
### Tweaking color scheme
`isabelline` is a pretty color but she likes to play. Copy `_config.scss` from the source and place it under `_sass/_config.scss`. Follow instructions in that file on how to adjust colors.
## Contributing
Bug reports and pull requests are welcome on GitHub at https://github.com/rzen/jekyll-theme-isabelline. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
## Development
To develop and test simply run from the root of a cloned `jekyll-theme-isabelline` project:
```sh
$ docker-compose up jekyll-serve
```
## License
The theme is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).