Skip to content

Commit

Permalink
Fix remote_theme documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisrhymes committed May 14, 2024
1 parent 079cde9 commit 69ac1eb
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 14 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ If you are deploying to GitHub pages using their default build process, then you

```yaml
# With GitHub Pages Gem
remote_theme: chrisrhymes/bulma-clean-theme:v0.14.0
remote_theme: chrisrhymes/bulma-clean-theme@v0.14.0
```

## Documentation
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ For the site to work with Github Pages, all you need to do is update the _config
```yaml
#theme: bulma-clean-theme
remote_theme: chrisrhymes/bulma-clean-theme
remote_theme: chrisrhymes/bulma-clean-theme@v0.14.0
```
And then push up your changes to Github as normal.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,10 @@ gem "bulma-clean-theme", '0.7.2'
gem 'github-pages', group: :jekyll_plugins
```

2. Open the `_config.yml` and comment out or delete the line `theme: minima` and replace it with `remote_theme: chrisrhymes/bulma-clean-theme`, then add `github-pages` to the list of plugins. Update the baseurl to your GitHub repo name, in this example we are using `my-project` as the repo name
2. Open the `_config.yml` and comment out or delete the line `theme: minima` and replace it with `remote_theme: chrisrhymes/bulma-clean-theme@v0.14.0`, then add `github-pages` to the list of plugins. Update the baseurl to your GitHub repo name, in this example we are using `my-project` as the repo name
```yaml
#theme: minima
remote_theme: chrisrhymes/bulma-clean-theme
remote_theme: chrisrhymes/bulma-clean-theme@v0.14.0
baseurl: "/my-project"
plugins:
- github-pages
Expand Down
2 changes: 1 addition & 1 deletion docs/getting-started/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ Ensure you specify the version number at the end of the remote_theme, otherwise

```yaml
# _config.yml
remote_theme: chrisrhymes/bulma-clean-theme:v0.14.0
remote_theme: chrisrhymes/bulma-clean-theme@v0.14.0
```

### v1.x of Bulma Clean Theme
Expand Down
2 changes: 1 addition & 1 deletion docs/getting-started/upgrading-to-v1.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ If you are using Jekyll Remote Theme, then you can [add a version number](https:

```yaml
# _config.yml
remote_theme: chrisrhymes/bulma-clean-theme:v1.0.0
remote_theme: chrisrhymes/bulma-clean-theme@v1.0.0
```
## Changes to Bulma
Expand Down
8 changes: 0 additions & 8 deletions index.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,6 @@ This website showcases the options for the Bulma Clean theme. The theme is avail

The ruby gem is available on the Ruby Gems website at the following location. [https://rubygems.org/gems/bulma-clean-theme](https://rubygems.org/gems/bulma-clean-theme).

## GitHub Pages

The theme can be used with GitHub Pages by setting the `remote_theme` in your Jekyll sites `_config.yml`

```yml
remote_theme: chrisrhymes/bulma-clean-theme
```
## Documentation

For full instructions, please see the [Documentation](/bulma-clean-theme/docs/)
Expand Down

0 comments on commit 69ac1eb

Please sign in to comment.