Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

V0.4x #15

Open
wants to merge 25 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,3 @@ vendor/

# OS files
.DS_Store
inklings.md
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.1.3
3.3.5
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,23 @@ nav_exclude: TRUE
{:toc}
</details>

## v0.4.4

- Added
- include for backgrounds
- Campaign prefooter, with timeline built in Jekyll
- Cairn procedures
- Changed:
- Critical Damage now takes a wound, from Liminal Horror
- Burdens is deprecated, and Fatigue tracks current WIL
- Statblocks for locations, NPCs and PCs
- New nav_footer
- connected_to is a Jekyll liquid implementation with a Python-build connection graph in yml
- Under the hood:
- ruby version upgrade
- Fixed:
- redirects on System

## v0.4.3

- Added:
Expand Down
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,16 @@ Assuming [Jekyll] and [Bundler] are installed on your computer:

and then browse to http://localhost:4000.

## Building and previewing your site locally

Using the `Connected_to` feature requires running a script to map pages interlinks, and generate the `_data/markdown_links.json`file.
To do so as a command line to run the script while building locally, making sure you update the links often.

```
python3 extract_links.py .
bundle exec jekyll serve
```

## Customization

You're free to customize sites that you create with this template, however you like!
Expand Down
6 changes: 3 additions & 3 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ title: Template
description: A template for an RPG campaign Jeykll site using the Just the Docs theme.
theme: just-the-docs

url: https://terra-campaigns.github.io/
url: https://terra-campaigns.github.io/template

permalink: pretty
plugins:
Expand All @@ -24,8 +24,8 @@ favicon_ico: "/imgs/favicon.ico"
color_scheme: site

# Back to top link
back_to_top: true
back_to_top_text: "Back to top"
# back_to_top: true
# back_to_top_text: "Back to top"

# Footer "Edit this page on GitHub" link text
gh_edit_link: true # show or hide edit this page link
Expand Down
Loading
Loading