Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ntkme/jekyll-local-theme
:art: Jekyll plugin for building Jekyll sites with any local theme.
https://github.com/ntkme/jekyll-local-theme
github-pages jekyll jekyll-plugin jekyll-site jekyll-themes
Last synced: 27 days ago
JSON representation
:art: Jekyll plugin for building Jekyll sites with any local theme.
- Host: GitHub
- URL: https://github.com/ntkme/jekyll-local-theme
- Owner: ntkme
- License: mit
- Created: 2020-05-05T22:03:16.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2024-09-17T07:16:22.000Z (about 2 months ago)
- Last Synced: 2024-09-29T03:04:50.844Z (about 1 month ago)
- Topics: github-pages, jekyll, jekyll-plugin, jekyll-site, jekyll-themes
- Language: Ruby
- Homepage: https://rubygems.org/gems/jekyll-local-theme
- Size: 43.9 KB
- Stars: 10
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Jekyll Local Theme
Jekyll plugin for building Jekyll sites with any local theme
## Usage
1. Add the following to your Gemfile
``` ruby
gem "jekyll-local-theme"
```and run `bundle install` to install the plugin
2. Add the following to your site's `_config.yml` to activate the plugin
``` yml
plugins:
- jekyll-local-theme
```3. Add themes to your site's `_themes` directory
``` sh
git submodule add https://github.com/jekyll/minima.git _themes/minima
```Note: You can just copy files without using `git submodule`
4. Add the following to your site's `_config.yml` to choose your theme
``` yml
local_theme: minima
```