1.2 KiB
excerpt | last_modified_at | tags | title | |
---|---|---|---|---|
2017-12-01T09:51:16-05:00 |
|
Jekyll Remote Theme Support Added |
Basically Basic can now be installed remotely for use on GitHub Pages!
The days of having to forking this repo and manually manage updates are over. Simply install the jekyll-remote-theme plugin by doing the following and away you go.
If you’ve previously forked this repo start by removing
_layouts
,_includes
,_sass
,assets/javascripts
, andassets/stylesheets
. Be sure to leave any files that you’ve customized so they override the versions bundled in the theme.In your
Gemfile
replacegem "jekyll"
with the following:gem "github-pages", group: :jekyll_plugins gem "jekyll-remote-theme"
Run
bundle update
and verify that all gems install properly.Add
remote_theme: "mmistakes/jekyll-theme-basically-basic"
to your_config.yml
file.Then add
jekyll-remote-theme
to theplugins
(previously gems) array in your_config.yml
file like so:plugins: - jekyll-remote-theme