• Stars
    star
    289
  • Rank 142,606 (Top 3 %)
  • Language SCSS
  • License
    Apache License 2.0
  • Created over 5 years ago
  • Updated 6 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

๐ŸŒ’ Light and dark blog theme for Jekyll, inspired by Dash UI for Atom.

logo

A dark and light theme for Jekyll, inspired by Dash UI for Atom. ๐ŸŒ’โ˜€

Build Tag license Gem Downloads

This theme for Jekyll has been inspired by dash-ui, a dark theme for Atom.

design

Features

๐ŸŒ“ Dark/Light Mode

โฌ…๏ธ Right-to-Left (RTL) Support

๐Ÿ”– Tags

๐Ÿ“™ Pagination

๐Ÿ’ป Syntax Highlighting

๐Ÿ‘‹ Customisable Avatar Box

๐Ÿ’• Social Links

Installation

Add this line to your Jekyll site's Gemfile:

For Jekyll 3:

gem 'jekyll-dash', '~> 1'

Keep in mind: Github pages generation only supports Jekyll 3.9.x right now.

For Jekyll 4:

gem 'jekyll-dash', '~> 2'

And add this line to your Jekyll site's _config.yml:

theme: jekyll-dash

And then execute:

$ bundle

Or install it yourself as:

$ gem install jekyll-dash -v version

Configuration

Add the following configuration to your site. Customise it to your needs!

# required by disqus to display comments
url: https://your-site-url

# jekyll-paginate
paginate: 5
paginate_path: "/blog/page:num/"

# jekyll-tagging (optional)
tag_permalink_style: pretty
tag_page_layout: tag_page
tag_page_dir: tag

# for github pages custom domains:
# include: [CNAME]

dash:
  # the way how dates should be displayed
  date_format: "%b %-d, %Y"

  # (optional) discqus comment configuration
  disqus:
    shortname: <your-disqus-shortname>  

  # the animation speed of the post scroll-in effect
  animation_speed: 50

  # wether to enable Right-to-Left support or not
  rtl: false

  # Replaces the default avatar provider (gravatar)
  #avatar_source: github
  #github_username: bitbrain
  #avatar_source: local
  #avatar_path: /assets/avatar.png

  # generate social links in footer
  # supported colors: green, red, orange, blue, cyan, pink, teal, yellow, indigo, purple
  social_links:
    - url: https://twitter.com/bitbrain_
      icon: twitter-square
      color: cyan
    - url: https://bitbrain.itch.io
      icon: itch-io
      color: red
    - url: https://github.com/bitbrain
      icon: github-square
      color: purple
  
  # wether the author box should be displayed or not
  show_author: true

Using this theme directly on Github Pages

Please keep in mind that Github Pages does only support a limited list of Jekyll plugins. You will be able to use this theme on Github Pages but some functionality might not be available, for example displaying tags. In order to use this theme to a full extend, you have to generate the _site separately via Github Actions.

  • <username>.github.io - contains main source branch and orphan gh-pages branch (see example)

I have created a guide on how to set this up here.

You are not required to do this, but keep in mind that some functionality might not be available when using the Jekyll generator on Github directly!

If you are using a custom domain add in your main branch a file named CNAME with your domain there and uncomment this line in your config file:

include: [CNAME]

For more information about how to configure your CNAME file, read the official documentation.

Additional Features

Tagging add the jekyll/tagging plugin to your _config.yml file to enable tagging. Do not forget to also add the following to your Gemfile:

gem "jekyll-tagging"

Gravatar if you want to display your gravatar picture, add the liquid-md5 to your _config.yml file. Do not forget to also add the following to your Gemfile:

gem "liquid-md5"

FAQ

I have configured posts but no posts are showing?

Solution: You most probably forgot to configure jekyll-paginate in your _config.yml! Make sure you have the correct configuration as described above!

I have added the correct configuration for jekyll-paginate but it is now complaining about a missing index.html file. What do I do?

Solution pagination only works with HTML files! Markdown is not supported there. Simply rename your index.md into index.html - that should do the trick!

I have configured Disqus via _config.yml but Disqus fails to load on the page?

Solution: Make sure you configure the correct url within your _config.yml. Also make sure that your domain is trusted by Disqus. This can be configured within Disqus by adding a trusted domain.

I am using this theme but I don't see any tags?

Solution: as described above you have to add the tagging plugin. Additionally, tags do not work natively by Github Pages. You have to build your site on an external CI and push the _site artifacts to a hosting repository.

I am getting an error that Bundler could not find compatible versions for gem

Solution

Make sure you are using a version of this theme that is compatible with Jekyll. Version 1.x is only compatible with Jekyll 3.x while Version 2.x is only compatible with Jekyll 4.x.

I am getting an error 'cannot load such file --webrick' when trying to run bundle exec jekyll serve

Solution

As explained here this seems to be a bug with some recent Jekyll 4 version. To solve this simply run:

bundle add webrick

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/bitbrain/jekyll-dash. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.

Development

To set up your environment to develop this theme, run bundle install.

Your theme is setup just like a normal Jekyll site! To test your theme, run bundle exec jekyll serve and open your browser at http://localhost:4000. This starts a Jekyll server using your theme. Add pages, documents, data, etc. like normal to test your theme's contents. As you make modifications to your theme and to your content, your site will regenerate and you should see the changes in the browser after a refresh, just like normal.

When your theme is released, only the files in _layouts, _includes, _sass and assets tracked with Git will be bundled. To add a custom directory to your theme-gem, please edit the regexp in jekyll-dash.gemspec accordingly.

If you want to learn how Jekyll Dash gets deployed via Github Actions, feel free to read this article written by me.

License

The theme is available as open source under the terms of the Apache License 2.0.

More Repositories

1

beehave

๐Ÿ behavior tree AI for Godot Engine
GDScript
1,749
star
2

pandora

Godot 4 addon for RPG data management such items, inventories, spells, mobs, quests and NPCs.
GDScript
536
star
3

godot-gamejam

๐Ÿค– Godot Engine 4 template to better get started for gamejams with your 2D or 3D game!
GDScript
507
star
4

godot-dash

Dark theme for Godot Engine inspired by Atom Dash.
146
star
5

godot-tutorials

A curation of Godot tutorial source code created by bitbrain.
GDScript
112
star
6

braingdx

๐ŸŽฎ Game jam framework based on libgdx.
Java
85
star
7

wasd

๐ŸŽฎ simple 2D input controller for Godot Engine 4
GDScript
35
star
8

godot-setup-action

Sets up the Godot binary inside your workflow to access.
Shell
16
star
9

corg-e

๐Ÿค– A small robot has one mission: finding the source of happiness
GDScript
12
star
10

scape-java

A fast-paced running platformer
Java
9
star
11

chunx

Java 2D chunk engine to generate "infinite" worlds.
Java
9
star
12

galacticum

Galacticum is a space game written in Java (LibGDX)
C
8
star
13

dungeonquest

A game created within 180 minutes. โš”
GDScript
6
star
14

motion-canvas-animations

A collection of animations I created for my Youtube devlogs and tutorials.
TypeScript
4
star
15

icebearjs

A light weight JQuery plugin collection
JavaScript
4
star
16

craft

A crafting game for Android and PC.
Java
4
star
17

ggj-2023

๐ŸŒฑ The Last Seed
GDScript
4
star
18

parallax

Library which provides parallax scrolling support for Java 2D libraries such as LibGDX and Slick2D.
Java
4
star
19

muffin-bambus

A template/theme applicable for Jekyll
CSS
4
star
20

pixelart-tutorials

Learn pixelart from scratch with bitbrain's Youtube tutorials!
3
star
21

jpersis

โ™จ๏ธ Light weighted persistence framework for Java
Java
3
star
22

bitbrain.github.io

๐Ÿ““ My personal blog, proudly hosted on Github.
HTML
3
star
23

magicwizard-android-1.x

!!!DEPRECATED!!! Android app for "Magic - The Gathering" players in order to count life points.
Java
3
star
24

plox

Plox is my #1GAM entry for January. You fight against aliens and save the world!
Java
2
star
25

local-setup

๐Ÿฑโ€๐Ÿš€ curation of scripts for my local developer experience.
2
star
26

ggj-2022

๐Ÿ”ฅโ„๏ธ the fate of the world is in your hands! Created within 48 hours
GDScript
2
star
27

maze

Our #GlobalGameJam submission.
Java
2
star
28

drachenherz

๐Ÿฒโš” Jekyll based theme for the WoW guild "Drachenherz"
CSS
2
star
29

rbcgj-2016

The gamejam submission of the #rbcgj 2016
Java
1
star
30

clouboy

June #1gam submission.
Java
1
star
31

lolpix-api

Backend of lolPix
Java
1
star
32

godot-experiments

Contains Godot projects for trying out features and capabilities.
1
star
33

bitbrain

Hosting profile specific information about myself.
1
star
34

gemspec-fetch

๐Ÿ’Ž Github Action that fetches metadata from any .gemspec file
Shell
1
star
35

gameoff-2022

Github GameOff 2022 assets.
1
star
36

shelter

๐Ÿ’€๐Ÿ”ซ Survival horror. #minibeansjam5 submission, proudly built within 48 hours.
Java
1
star
37

vserver

Virtualization utilities written in Docker.
Makefile
1
star
38

mindmazer

Remember patterns to enter the next stage! Be wary of danger behind you.
Java
1
star
39

mineweb

Minecraft plugin to fetch current server information via JSON
Java
1
star
40

pretender

My #1GAM April submission, written in Java (LibGDX).
Java
1
star
41

intellij-dash

Inspired IntelliJ theme based on Atom Dash by cpsdqs
1
star
42

scope

A 3D space network arena shooter
Java
1
star
43

littlewars

A 2D-Strategy game written in Java.
Java
1
star
44

fishmonger

Created within 48 hours during #minibeansjam3 ๐ŸŸ๐ŸŽฃ๐Ÿ ๐Ÿก๐Ÿฆˆ
Java
1
star
45

acid-snake

Snake game, written with acid
Java
1
star
46

braingdx-tutorial

Contains source code of the braingdx tutorial series.
1
star
47

awake

๐ŸŽฎ Github Game Off 2019 submission
Java
1
star
48

dreamkid

Design system implementation for a dreamful app.
JavaScript
1
star
49

commute

๐Ÿšƒ gamedev summer jam 2020 submission.
GDScript
1
star
50

ggj-2024

๐Ÿ˜ a game about laughing (and the lack of it)
GDScript
1
star
51

acid

Provides a Java cell API to display fancy cell boxes.
Java
1
star
52

workshop

A workshop app.
Java
1
star