hima is a simple Jekyll theme with the goal of being accessible to everyone, and follows The A11Y Project's accessibility guidelines.
Add the following to your Gemfile
to install the jekyll-remote-theme
plugin:
gem "jekyll-remote-theme"
Then in your _config.yml
, set the theme, and add the plugin
remote_theme: brandoncardoso/hima
plugins:
- jekyll-remote-theme
Finally run bundle install
to install gems
Add this line to your Jekyll site's Gemfile
:
gem "hima"
And add this line to your Jekyll site's _config.yml
:
theme: hima
And then execute:
$ bundle
Or install it yourself as:
$ gem install hima
Refers to files within the _layouts
directory, that define the markup for your theme.
default.html
— The base layout that lays the foundation for subsequent layouts. The derived layouts inject their contents into this file at the line that says{{ content }}
and are linked to this file via FrontMatter declarationlayout: default
.home.html
— The layout for your landing-page / home-page / index-page. [More Info.]page.html
— The layout for your documents that contain FrontMatter, but are not posts.post.html
— The layout for your posts.archive.html
— The layout for the category/tag archive page.
home.html
is a flexible HTML layout for the site's landing-page / home-page / index-page. It will inject the content before the Posts heading. The posts list will only appear if you have at least one valid post, or draft with show_drafts
enabled on your site.
post_list_title
(string) - overrides the post list title.post_list_limit
(int) - limits the number of posts on the home page
head.html
— Code-block that defines the<head></head>
in default layout.custom-head.html
— Placeholder to allow users to add more metadata to<head />
.header.html
— Defines the site's main header section. By default, pages with a definedtitle
attribute will have links displayed here. See Navigation Links to customize.google-analytics.html
— Inserts Google Analytics module (active only in production environment).footer.html
— Defines the site's footer section.social-list.html
— Defines how social media links are listed in the footer.social-icons/*.svg
— SVG markup components of supported social-icons.
Refers to .scss
files within the _sass
directory that define the theme's styles.
hima/colorschemes/auto.scss
— An adaptive colorscheme that switches between light and dark mode depending on your site visitors' preference. Used by default.hima/initialize.scss
— A component that defines the theme's skin-agnostic variable defaults and sass partials. It imports the following components (in the following order):hima/custom-variables.scss
— A hook that allows overriding variable defaults and mixins. (Note: Cannot override styles)hima/main.scss
— Style rules for the theme.hima/custom-styles.scss
— A hook that allows overriding styles defined above. (Note: Cannot override variables)
Refer to the Color Schemes section for more details.
Refers to various asset files within the assets
directory.
assets/css/style.scss
— Imports sass files from within the_sass
directory and gets processed into the theme's stylesheet:assets/css/styles.css
.assets/hima-social-icons.html
— Imports enabled social-media icon graphics and gets processed into a composite SVG file.
Refer to the Social Networks section for more details.
Hima comes with jekyll-seo-tag
plugin pre-installed to make sure your website gets the most useful meta tags. See usage for how to set it up.
Add the following line to your _config.yml
file:
theme: hima
To override the default structure and style of hima, simply create a copy a copy of the files/layouts/includes you wish the modify in the same directory structure on your site's root.
e.g., to override the _includes/head.html
file to specify a custom style path, create an _includes
directory, copy _includes/head.html
from the hima gem folder to <yoursite>/_includes
and start editing that file.
You can override any Sass variables and mixins by redefining them in _sass/hima/custom-variables.scss
. Custom CSS rules can be added in _sass/hima/custom-styles.scss
.
To switch to another color scheme, simply declare it in your site's _config.yml
file. For example, to use the dark color scheme, you would add the following:
hima:
colorscheme: dark
Name | Description |
---|---|
auto | Adaptive color scheme using the light and dark color schemes. |
dark | Dark color scheme based on gruvbox. |
light | Light color scheme based on gruvbox. |
💡 Adaptive colorscheme switches between the "light" and "dark" variants based on the user's operating system or browser setting via CSS Media Query prefers-color-scheme.
You can set which pages you want to appear in the navigation area and configure their order.
For instance, to only shows links to your about
and contact
pages, add the following to your _config.yml
:
header_pages:
- about.md
- contact.md
You can add custom metadata to the <head>
tag of your pages by creating _includes/custom-head.html
.
Inside your _config.yml
file, add informatin about your site's author.
author:
name: John Smith
email: "john.smith@foobar.com"
You can add links to the accounts you have on other sites, with respective icon as an SVG graphic, via the config file. The link data is sourced from the config key hima.social
. It is a list of key-value pairs, each entry
corresponding to a link and rendered in the footer.
For example, to render links to Jekyll's GitHub repository and twitter account, you would add:
hima:
social:
- { platform: github, url: "https://github.com/jekyll/jekyll", label: "Jekyll's github repo" }
- { platform: twitter, url: "https://twitter.com/jekyllrb" }
The platform
key corresponds to the SVG file name in /_includes/social-icons/
. You can include the optional label
value which will be used for the link's aria-label (defaults to platform
).
hima includes icons for the following platforms:
github
instagram
linkedin
To render a link to a platform not listed above, your should first create an SVG file like_includes/social-icons/<PLATFORM>.svg
). Then add an entry under hima.social
in your config file. The social links are rendered in the order they appear in your config file.
To enable Google Analytics, add the following line to your _config.yml
:
google_analytics_measurement_id: <YOUR MEASUREMENT ID>
Google Analytics will only appear in production, i.e., JEKYLL_ENV=production
Bug reports and pull requests are welcome on GitHub at https://github.com/brandoncardoso/hima. 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.
To set up your environment to develop this theme, run bundle install
.
To test locally, run ./scripts/serve
to start a local Jekyll server, and open http://localhost:4000
in your browser. As you make modifications, it will automatically regenerate and you should see the changes in your browser.
The theme is available as open source under the terms of the MIT License.