Skip to content

Latest commit

 

History

History
96 lines (59 loc) · 2.67 KB

README.md

File metadata and controls

96 lines (59 loc) · 2.67 KB

Abtion Github Pages Theme

Usage

Public

If jekyll has not been added to your repository, clone it to your computer and run:

jekyll new .

Set in _config.yml:

remote_theme: abtion/github-pages-theme

Local

Add a Gemfile:

source "https://rubygems.org"

gem 'github-pages', group: :jekyll_plugins

gem 'wdm', '>= 0.1.0' if Gem.win_platform?

Install the gems

bundle install

Serve the application

bundle exec jekyll serve --livereload

If you wish to serve the version with licensed content then use port 3000

bundle exec jekyll serve --livereload --port 3000

Folder Structure Explanation

The theme is forked from Minima therefore has all the necessary files and directories to have a new Jekyll site up and running with zero-configuration.

_layouts

  • 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 declaration layout: default.
  • navigation.html - Used for the mobile view layout since there is not a sidebar.

_includes

Refers to snippets of code that can be inserted in multiple layouts (and another include-file as well) within the same theme-gem.

_sass

  • reset.scss - a reset stylesheet is to reduce inconsistencies between browsers for things like default line heights, margins and font sizes of headings, and so on.
  • custom.scss - a stylesheet that imports all the custom styles located in the sub-folder custom

custom

  • _base.scss - global stylesheet
  • _syntax-highlighting.scss - global style for code elements
  • _default.scss - stylesheet target for _layouts/default.html
  • _navigation.scss - stylesheet target for _layouts/_navigation.html

The remaining stylesheets are targeting code snippets in the _includes folder with a matching file name and a prefix _. Example:

_sass/custom/_header.scss is targeting _includes/header.html

Note:

_sass/custom/_search.scss is targeting _assets/search.html

assets

Contributing

Bug reports and pull requests are welcome ❤️

License

Please read 👉 LICENSE