-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Billy Charlton
committed
May 23, 2024
1 parent
523e2ac
commit 8314ea3
Showing
3 changed files
with
115 additions
and
74 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
ruby '3.3.0' | ||
|
||
source "https://rubygems.org" | ||
|
||
gem "github-pages", group: :jekyll_plugins | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,3 +11,17 @@ It is in **TWO LANGUAGES now** so if you want pages to be available in both Engl | |
**Top Nav Bar:** In `_config.yml` edit the `navigation` list to add items to the top nav bar. Markdown files with the names listed there will be read from root and from `_pages_en`. _Be sure to change the title field in each page_ to match the language of the page! | ||
|
||
The system will do its best to pick the right version of a page based on whether it exists in both languages and which version of the site you are visiting. | ||
|
||
|
||
## Building site locally | ||
|
||
You need Ruby 3.3.0 installed, so that the dependency bundler can install all the things: | ||
|
||
- Install Ruby 3.3.0 for your system | ||
- On Mac homebrew this is `brew install [email protected]` | ||
- Or `rbenv install 3.3.0` and `rbenv global 3.3.0` | ||
- `bundle install` | ||
|
||
Now you can run locally: | ||
|
||
- `bundle exec jekyll serve` |