Tale is a minimal Jekyll theme curated for storytellers. Checkout the demo here.
There are 3 ways to install this theme
jekyll-remote-theme
plugin (for GitHub Pages hosted sites)Gemfile
:gem "tale"
$ bundle
_config.yml
add these lines:theme: tale
permalink: /:year-:month-:day/:title
paginate: 5
Remove any other theme:
lines.
Rename index.md
to index.html
. Without this, the jekyll-paginate
gem will not work.
In about.md
, change the layout:
field to post
:
layout: post
Gemfile
:gem "jekyll-remote-theme"
gem "jekyll-paginate"
$ bundle
_config.yml
add these lines:remote_theme: chesterhow/tale
permalink: /:year-:month-:day/:title
paginate: 5
plugins:
- jekyll-paginate
- jekyll-remote-theme
Remove any other theme:
or remote_theme:
lines.
Rename index.md
to index.html
. Without this, the jekyll-paginate
gem will not work.
In about.md
, change the layout:
field to post
:
layout: post
Fork this repository
Delete the unnecessary files/folders: CODE_OF_CONDUCT.md
, LICENSE
, README.md
, tale.gemspec
Delete the baseurl
line in _config.yml
:
baseurl: "/tale" # delete this line
Once you've installed the theme, you're ready to work on your Jekyll site. To start off, I would recommend updating _config.yml
with your site's details.
To build and serve your site, run:
$ bundle exec jekyll serve
And you're all set! Head over to http://127.0.0.1:4000/ to see your site in action.
Comments are disabled by default. To enable them, look for the following line in _config.yml
and change jekyll-tale
to your site's Disqus id.
disqus: jekyll-tale
Next, add comments: true
to the YAML front matter of the posts which you would like to enable comments for.
Found a bug or have a suggestion? Feel free to create an issue or make a pull request!
See LICENSE