Use works listing

This commit is contained in:
Madison Rye Progress
2026-03-12 22:06:25 -07:00
parent aaa31c5cc2
commit 3ea7ee7d0e
7 changed files with 147 additions and 15 deletions

1
.gitignore vendored
View File

@ -1 +1,2 @@
.hugo_build.lock
public

View File

@ -6,7 +6,7 @@ paginatePath = ''
disablePathToLower = true
[permalinks]
post = '/:filename/'
post = '/:contentbasename/'
[params]
author = 'The Clade authors'

View File

@ -15,18 +15,7 @@
To split oneself among however many individuals, to let the mind drift and diverge, to feel the world from points of view not your own, and then let those memories crash down into you…well, it inspires a feeling best described as heady, to say the least.
* ["Sufficiently Advanced"](/sufficiently-advanced) *by Rob MacWolf*
* ["Genre Clade"](/genre-clade) *by Nathan "Domus Vocis" Hopp*
* ["Après un rêve"](/apres-un-reve) *by Madison Scott-Clary*
* ["Support Group for Anomalies in Forking"](/sgaf) *by Michael Miele*
* ["Cowboy"](/cowboy) *by Alexandria Christina Leal*
* ["True Love Lies Within and Without"](/true-love-lies-within-and-without) *by Thomas "Faux" Steele*
* ["The Big O"](/the-big-o) *by Evan Drake*
* ["She Who Haunts the Storm"](/she-who-haunts-the-storm) *by JS Hawthorne*
* ["Earthbound"](/earthbound) *by Kergiby*
* ["Cascade Failure"](/cascade-failure) *by Joel Kreissman*
**Content Warnings:** "Après un rêve" contains surgery and death; "Support Group for Anomalies in Forking" contains alcohol abuse, body horror, a car accident and injuries, and medical debt; "Cowboy" contains manipulation, complex PTSD, emotional flashbacks, a severe panic attack, and mentions parental death; "She Who Haunts the Storm" contains depression, self-hate, self(?)-harm, coercion, intimidation, and suicidal ideation; "Earthbound" contains death and depression.
{{< works corpus="works" collections="none" creators="none" >}}
## About the authors

115
data/works.yml Normal file
View File

@ -0,0 +1,115 @@
#######
# Clade
- title: Sufficiently Advanced
url: https://clade.post-self.ink/sufficiently-advanced/
authors:
- Rob MacWolf
type: short story
years:
- 2343
characters:
- Theodred
description: Sometimes, conversing with oneself can lead to unexpected changes.
- title: Genre Clade
url: https://clade.post-self.ink/genre-clade/
authors:
- Nathan "Domus Vocis" Hopp
type: short story
years:
- 2251
characters:
- Dante
description: Writing is a fantastic way to explore oneself, as Dante learns well.
- title: Après un rêve
url: https://clade.post-self.ink/apres-un-reve/
authors:
- Madison Rye Progress
years:
- 2196
characters:
- Sylvie
description: Uploading to meet one's love once again comes with high stakes.
cw: surgery, death
- title: Support Group for Anomalies in Forking
url: https://clade.post-self.ink/sgaf/
authors:
- Michael Miele
type: short story
years:
- 2328
characters:
- Ernie
description: Forking is not always so easy as they say...
cw: alcohol abuse, body horror, a car accident and injuries, and medical debt
- title: Cowboy
url: https://clade.post-self.ink/cowboy/
authors:
- Alexandria Christina Leal
years:
- 2200
characters:
- Peace System
description: Life sys-side wreaks havoc with the walls of dissociation for the Peace system.
cw: manipulation, cPTSD, emotional flashbacks, a severe panic attack, and mentions parental death
- title: True Love Lies Within and Without
url: https://clade.post-self.ink/true-love-lies-within-and-without/
authors:
- Thomas "Faux" Steele
type: short story
years:
- 2286
characters:
- Caspian Sunspear
description: So much in life is easier, sys-side, but finding love remains as difficult as ever.
- title: The Big O
url: https://clade.post-self.ink/the-big-o/
authors:
- Evan Drake
type: short story
years:
- 2291
characters:
- Walter
description: Sometimes, one must use the trappings of capitalism to truly rid oneself of it.
- title: She Who Haunts the Storm
url: https://clade.post-self.ink/she-who-haunts-the-storm/
authors:
- JS Hawthorne
type: short story
years:
- 2309
characters:
- Livia
description: Struggling against oneself takes new dimensions for Livia, sys-side.
cw: depression, self-hate, coercion, intimidation, suicidal ideation
- title: Earthbound
url: https://clade.post-self.ink/earthbound/
authors:
- Kergiby
type: short story
years:
- 2364
characters:
- Jonathan Miller
description: The world is not what it was, both on a grand scale and an intensely personal one.
cw: death and depression
- title: Cascade Failure
url: https://clade.post-self.ink/cascade-failure/
authors:
- Joel Kreissman
type: short story
years:
- 2302
characters:
- Gregory
description: Simulating an ecosystem sometimes needs a little something extra.

View File

@ -3,4 +3,4 @@
publish = "public"
[build.environment]
HUGO_VERSION = "0.127.0"
HUGO_VERSION = "0.157.0"

View File

@ -28,6 +28,7 @@ ul + p {
margin-top: 1rem;
}
/*
dt {
font-size: 90%;
font-style: italic;
@ -44,6 +45,32 @@ dd {
margin-left: 1rem;
margin-bottom: 1rem;
}
*/
.works dt {
background: linear-gradient(135deg, transparent 0.5rem, rgba(127, 127, 127, 0.2) 0) top left;
}
.works dd {
background: linear-gradient(315deg, transparent 0.5rem, rgba(127, 127, 127, 0.1) 0) bottom right;
}
.title ul {
text-align: left;
}
.title ul li {
margin: 0 0 0 2rem;
}
/*
.buy a, body.dark-mode .buy a {
padding: 0.3rem 0.5rem;
border: none;
box-shadow: none;
background-color: transparent;
background: rgba(127, 127, 127, 0.2);
background: linear-gradient(135deg, transparent 0.5rem, rgba(127, 127, 127, 0.2) 0) top left,
linear-gradient(315deg, transparent 0.5rem, rgba(127, 127, 127, 0.2) 0) bottom right;
}
*/
figure {
margin: 1rem auto;