Repository is archived
No commit activity in last 3 years
No release in over 3 years
Adds a _root directory to Jekyll, allowing you to move static root site files away from the root jekyll directory.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Dependencies

Runtime

>= 3.7, < 5.0
 Project Readme

Jekyll Root Directory Gem Version License: MIT

Jekyll Root Directory is a ruby gem for Jekyll static site generator.
It allows users to move static root sites files away from the root Jekyll directory by utilization of a _root directory.

Installation

Add this line to your Gemfile:

group :jekyll_plugins do
  gem "jekyll-root-directory"
end

And then execute:

$ bundle

Alternatively install the gem yourself as:

$ gem install jekyll-root-directory

and put this in your _config.yml

plugins:
  - jekyll-root-directory

Usage

  1. Create a _root directory.
  2. Move your static root files to _root (favicon, robots.txt, humans.txt etc.).
  3. Generate your site!