Skip to content

Commit 5c9db09

Browse files
committed
Add new post
1 parent ac1f10d commit 5c9db09

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
---
2+
title: "Jekyll Remote Theme Support Added"
3+
excerpt:
4+
last_modified_at: 2017-12-01T09:51:16-05:00
5+
tags:
6+
- Jekyll
7+
---
8+
9+
Basically Basic can now be installed remotely for use on GitHub Pages!
10+
11+
The days of having to forking this repo and manually manage updates are over. Simply install the [**jekyll-remote-theme**](https://github.com/benbalter/jekyll-remote-theme) plugin by doing the following and away you go.
12+
13+
1. If you've previously forked this repo start by removing `_layouts`, `_includes`, `_sass`, `assets/javascripts`, and `assets/stylesheets`. Be sure to leave any files that you've customized so they override the versions bundled in the theme.
14+
15+
2. In your `Gemfile` replace `gem "jekyll"` with the following:
16+
17+
```ruby
18+
gem "github-pages", group: :jekyll_plugins
19+
gem "jekyll-remote-theme"
20+
```
21+
22+
3. Run `bundle update` and verify that all gems install properly.
23+
24+
4. Add `remote_theme: "mmistakes/jekyll-theme-basically-basic"` to your `_config.yml` file.
25+
26+
5. Then add [`jekyll-remote-theme`](https://github.com/benbalter/jekyll-remote-theme) to the `plugins` (previously gems) array in your `_config.yml` file like so:
27+
28+
```yaml
29+
plugins:
30+
- jekyll-remote-theme
31+
```

0 commit comments

Comments
 (0)