jekyll-darkred-theme¶ ↑
A dark-red theme for Jekyll.
Demo is available at Github-Pages.
Configurations¶ ↑
The theme is designed to use on blogs, thus you are free to use thumbnails for each posts.
These configurations are available on _config.yml
:
# following configurations allow showing thumbnails on post list # enable/disable thumbnails forcibly post_thumbnails: true # this image will shown if the thumbnail was not specified in the post post_default_thumbnail: "/relative/path/to/<my_default_thumbnail.png>" # show default thumbnail in the post list if not specified post_thumbnail_defaults: true
Also you have to specify thumbnail
option in _posts/0000-00-00-your-post.md
: (if not, the default thumbnail will be attached if post_thumbnail_defaults
is true)
--- layout: post title: Hello World! thumbnail: "/relative/path/to/thumbnail.png" ---