Implement Journals
Jekyll will follow directory structures, using it as the URL path when
building a site. This significant change adds configuration, styles, and
layouts for journals. Journals will be stored in the `/journals`
directory, and then within a directory for the character.
For each character's journals, configuration must be established in the
`_config.yml` file. Each character journal directory then can be treated
similar to a Jekyll project: the `_posts` directory can be leveraged for
posts. The base character journal directory has an index page, which by
default shows a small top section, then the most recent post. Since
these character journals don't adhere to the actual calendar, permalinks
have been reduced to the post title alone. Note: this means every post
in the character journal must be named different. Not certain if every
post on the site must be named different.
There are a number of steps still left:
- Build site index page. Include cards for each character that has a
journal, for each adventure, and for any additional miscellaneous
things captured on the site.
- Implement the adventure section, similar to journals. Any configured
adventures will exist in the `/adventures` directory, and then within
a specific directory.
- Actually write stuff.
2024-03-04 05:56:10 +00:00
|
|
|
title: Vagabond's TTRPG Site
|
|
|
|
author: Bill Niblock
|
2024-02-27 00:42:22 +00:00
|
|
|
description: >- # this means to ignore newlines until "baseurl:"
|
Implement Journals
Jekyll will follow directory structures, using it as the URL path when
building a site. This significant change adds configuration, styles, and
layouts for journals. Journals will be stored in the `/journals`
directory, and then within a directory for the character.
For each character's journals, configuration must be established in the
`_config.yml` file. Each character journal directory then can be treated
similar to a Jekyll project: the `_posts` directory can be leveraged for
posts. The base character journal directory has an index page, which by
default shows a small top section, then the most recent post. Since
these character journals don't adhere to the actual calendar, permalinks
have been reduced to the post title alone. Note: this means every post
in the character journal must be named different. Not certain if every
post on the site must be named different.
There are a number of steps still left:
- Build site index page. Include cards for each character that has a
journal, for each adventure, and for any additional miscellaneous
things captured on the site.
- Implement the adventure section, similar to journals. Any configured
adventures will exist in the `/adventures` directory, and then within
a specific directory.
- Actually write stuff.
2024-03-04 05:56:10 +00:00
|
|
|
A collection of my tabletop roleplaying game writings.
|
2024-06-21 20:55:53 +00:00
|
|
|
baseurl: "" # the subpath of your site, e.g. /blog
|
|
|
|
url: "https://ttrpg.theinternetvagabond.com" # the base hostname & protocol for your site, e.g. http://example.com
|
2024-02-27 00:42:22 +00:00
|
|
|
|
|
|
|
# Build settings
|
|
|
|
plugins:
|
|
|
|
- jekyll-feed
|
|
|
|
|
Implement Journals
Jekyll will follow directory structures, using it as the URL path when
building a site. This significant change adds configuration, styles, and
layouts for journals. Journals will be stored in the `/journals`
directory, and then within a directory for the character.
For each character's journals, configuration must be established in the
`_config.yml` file. Each character journal directory then can be treated
similar to a Jekyll project: the `_posts` directory can be leveraged for
posts. The base character journal directory has an index page, which by
default shows a small top section, then the most recent post. Since
these character journals don't adhere to the actual calendar, permalinks
have been reduced to the post title alone. Note: this means every post
in the character journal must be named different. Not certain if every
post on the site must be named different.
There are a number of steps still left:
- Build site index page. Include cards for each character that has a
journal, for each adventure, and for any additional miscellaneous
things captured on the site.
- Implement the adventure section, similar to journals. Any configured
adventures will exist in the `/adventures` directory, and then within
a specific directory.
- Actually write stuff.
2024-03-04 05:56:10 +00:00
|
|
|
permalink: none
|
|
|
|
|
2024-03-06 23:06:17 +00:00
|
|
|
collections:
|
|
|
|
- adventures
|
2024-08-07 15:48:37 +00:00
|
|
|
- campaigns
|
2024-03-06 23:06:17 +00:00
|
|
|
- journals
|
2024-08-07 15:48:37 +00:00
|
|
|
- settings
|
2024-03-06 23:06:17 +00:00
|
|
|
- tools
|
|
|
|
|
Implement Journals
Jekyll will follow directory structures, using it as the URL path when
building a site. This significant change adds configuration, styles, and
layouts for journals. Journals will be stored in the `/journals`
directory, and then within a directory for the character.
For each character's journals, configuration must be established in the
`_config.yml` file. Each character journal directory then can be treated
similar to a Jekyll project: the `_posts` directory can be leveraged for
posts. The base character journal directory has an index page, which by
default shows a small top section, then the most recent post. Since
these character journals don't adhere to the actual calendar, permalinks
have been reduced to the post title alone. Note: this means every post
in the character journal must be named different. Not certain if every
post on the site must be named different.
There are a number of steps still left:
- Build site index page. Include cards for each character that has a
journal, for each adventure, and for any additional miscellaneous
things captured on the site.
- Implement the adventure section, similar to journals. Any configured
adventures will exist in the `/adventures` directory, and then within
a specific directory.
- Actually write stuff.
2024-03-04 05:56:10 +00:00
|
|
|
defaults:
|
2024-06-14 16:46:00 +00:00
|
|
|
# ###
|
|
|
|
# Defaults for Adventures
|
|
|
|
# ###
|
2024-06-14 21:02:35 +00:00
|
|
|
## Mothership ##
|
|
|
|
-
|
|
|
|
scope:
|
|
|
|
path: "adventures/mothership"
|
|
|
|
values:
|
|
|
|
layout: "adventure"
|
|
|
|
campaign: "mothership"
|
|
|
|
campaign_name: "Mothership"
|
2024-06-14 16:46:00 +00:00
|
|
|
# ###
|
2024-08-07 15:48:37 +00:00
|
|
|
# Defaults for Campaigns
|
|
|
|
# ###
|
|
|
|
## Essence of Fate ##
|
|
|
|
-
|
|
|
|
scope:
|
|
|
|
path: "campaigns/eof"
|
|
|
|
values:
|
|
|
|
layout: "campaign"
|
|
|
|
campaign_name: "Essence of Fate"
|
|
|
|
# ###
|
2024-06-14 16:46:00 +00:00
|
|
|
# Defaults for Journals
|
|
|
|
# ###
|
|
|
|
## Nataliah ##
|
Implement Journals
Jekyll will follow directory structures, using it as the URL path when
building a site. This significant change adds configuration, styles, and
layouts for journals. Journals will be stored in the `/journals`
directory, and then within a directory for the character.
For each character's journals, configuration must be established in the
`_config.yml` file. Each character journal directory then can be treated
similar to a Jekyll project: the `_posts` directory can be leveraged for
posts. The base character journal directory has an index page, which by
default shows a small top section, then the most recent post. Since
these character journals don't adhere to the actual calendar, permalinks
have been reduced to the post title alone. Note: this means every post
in the character journal must be named different. Not certain if every
post on the site must be named different.
There are a number of steps still left:
- Build site index page. Include cards for each character that has a
journal, for each adventure, and for any additional miscellaneous
things captured on the site.
- Implement the adventure section, similar to journals. Any configured
adventures will exist in the `/adventures` directory, and then within
a specific directory.
- Actually write stuff.
2024-03-04 05:56:10 +00:00
|
|
|
-
|
|
|
|
scope:
|
|
|
|
path: "journals/nataliah"
|
|
|
|
values:
|
|
|
|
layout: "journal"
|
|
|
|
title: Taliah's Journal
|
|
|
|
author: Nataliah Kas Zhukoff
|
|
|
|
aut: nataliah
|
|
|
|
description: >-
|
|
|
|
My name is Nataliah Kas Zhukoff. At the suggestion of my master Jhoric
|
|
|
|
Stonehammer, I am keeping this journal of my progress and discoveries.
|
|
|
|
des: Journal of the alchemist apprentice Nataliah Kas Zhukoff
|
2024-06-14 16:46:00 +00:00
|
|
|
## Bask ##
|
Implement Journals
Jekyll will follow directory structures, using it as the URL path when
building a site. This significant change adds configuration, styles, and
layouts for journals. Journals will be stored in the `/journals`
directory, and then within a directory for the character.
For each character's journals, configuration must be established in the
`_config.yml` file. Each character journal directory then can be treated
similar to a Jekyll project: the `_posts` directory can be leveraged for
posts. The base character journal directory has an index page, which by
default shows a small top section, then the most recent post. Since
these character journals don't adhere to the actual calendar, permalinks
have been reduced to the post title alone. Note: this means every post
in the character journal must be named different. Not certain if every
post on the site must be named different.
There are a number of steps still left:
- Build site index page. Include cards for each character that has a
journal, for each adventure, and for any additional miscellaneous
things captured on the site.
- Implement the adventure section, similar to journals. Any configured
adventures will exist in the `/adventures` directory, and then within
a specific directory.
- Actually write stuff.
2024-03-04 05:56:10 +00:00
|
|
|
-
|
|
|
|
scope:
|
|
|
|
path: "journals/bask"
|
|
|
|
values:
|
|
|
|
layout: "journal"
|
|
|
|
title: Bask's Journal
|
|
|
|
author: Bask Temlin
|
|
|
|
aut: bask
|
|
|
|
description: >-
|
|
|
|
I'm Bask, I hit things with my sword.
|
|
|
|
des: Journal of the eldritch knight Bask Temlin
|
2024-06-14 16:46:00 +00:00
|
|
|
## Seventh ##
|
2024-03-06 23:06:17 +00:00
|
|
|
-
|
|
|
|
scope:
|
|
|
|
path: "journals/seventh"
|
|
|
|
values:
|
|
|
|
layout: "journal"
|
|
|
|
title: Journal of the 7th Ancillary
|
|
|
|
author: Ancillary Scribe
|
|
|
|
aut: seventh
|
|
|
|
description: >-
|
|
|
|
The (mis-) adventures of the 7th Ancillary of the Altasian Army
|
|
|
|
des: Journal of the 7th Ancillary Squad
|