Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/kkent030315/jekyll-darkred-theme

A dark-red theme for Jekyll
https://github.com/kkent030315/jekyll-darkred-theme

dark-red-theme github-pages jekyll jekyll-darkred-theme jekyll-theme jekyll-themes

Last synced: 12 days ago
JSON representation

A dark-red theme for Jekyll

Awesome Lists containing this project

README

        

![IMAGE](image.png)






# jekyll-darkred-theme
A dark-red theme for Jekyll.

[Demo](https://kkent030315.github.io/jekyll-darkred-theme) 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`:

```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/"

# 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)

```yml
---
layout: post
title: Hello World!
thumbnail: "/relative/path/to/thumbnail.png"
---
```