Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/kkent030315/jekyll-darkred-theme
- Owner: kkent030315
- License: mit
- Created: 2020-11-23T09:28:13.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2020-12-13T20:45:19.000Z (about 4 years ago)
- Last Synced: 2025-01-08T00:10:16.734Z (19 days ago)
- Topics: dark-red-theme, github-pages, jekyll, jekyll-darkred-theme, jekyll-theme, jekyll-themes
- Language: SCSS
- Homepage:
- Size: 3.48 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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"
---
```