Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/juanjosalvador/blue
Minimalist Jekyll theme (based on Bulma)
https://github.com/juanjosalvador/blue
jekyll jekyll-theme
Last synced: 26 days ago
JSON representation
Minimalist Jekyll theme (based on Bulma)
- Host: GitHub
- URL: https://github.com/juanjosalvador/blue
- Owner: JuanjoSalvador
- License: mit
- Created: 2019-06-27T17:24:33.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-01-26T00:15:03.000Z (10 months ago)
- Last Synced: 2024-03-14T21:07:01.026Z (8 months ago)
- Topics: jekyll, jekyll-theme
- Language: HTML
- Homepage: https://jsalvador.me/blue/
- Size: 201 KB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Blue
Minimalist Jekyll theme based on Bulma.
This work is on active development, but currently suitable for use on production and GitHub pages.
[DEMO](https://jsalvador.me/blue)
## What does comes with Blue?
Blue comes with the following features:
* Bulma CSS library.
* Kramdown as Markdown engine.
* MathJax for LaTeX-math support.
* Syntax highlight built-in.
* Pagination (via `jekyll-paginate` rubygem).
* Search engine optimization (via `jekyll-seo-tag` rubygem).
* RSS support by default (via `jekyll-feed` rubygem).## Installation (GitHub Pages)
1. Fork this repository.
2. Rename your fork as `your-username*.github.io`
3. Edit the variables on `_config.yml` to make them yours.
4. Replace the content of `_posts/` with your own content.
5. Enjoy and submit me any issue or improvement!## Installation (using RubyGems)
1. Add `blue-jekyll-theme` to your `Gemfile`.
2. Update your gems.
```
$ bundle update
```
3. Update your `_config.yml` file, replace your current theme by `blue-jekyll-theme` and add the needed plugins:* `jekyll-paginate`
* `jekyll-seo-tag`
* `jekyll-feed`## Config variables
Add or remove variables from the sample config file.
Available colors are the same for Bulma (default ones). You can choose between `primary` (light turquoise), `info` (blue), `warning` (yellow), `danger`(red), `dark` (black) and `light` (default). It will switch the header color.
```
# Permalinks
permalink: pretty# Setup
title: My Site
subtitle: My fancy site.
baseurl:
url: "https://example.dev"color: danger
author:
name: Jhon Doe
url: http://example.dev
email: # Place your email here
github: JohnDoe # Place your GitHub username here
twitter: JohnDoe # Place your twitter username here
mastodon: https://instance.dev/@johndoe # Place your profile URL here# Assets
sass:
style: compressedmarkdown: kramdown
highlighter: rouge
kramdown:
input: GFM# Custom vars
version: 3.8.5
paginate: 5 # Default pagination is 5 post per page
paginate_path: "/page:num/" # Default route for pagesplugins:
- jekyll-paginate
- jekyll-seo-tag
```## Licencse
MIT License