diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/app/config.rs | 2 | ||||
| -rw-r--r-- | src/tmpl/mod.rs | 9 |
2 files changed, 10 insertions, 1 deletions
diff --git a/src/app/config.rs b/src/app/config.rs index 746d5a4..fd0ac6b 100644 --- a/src/app/config.rs +++ b/src/app/config.rs @@ -99,7 +99,7 @@ pub struct Character { pub sticker_name: String, #[serde(rename = "defaultPose")] pub default_pose: String, - pub description: String, + pub description: MarkdownString, pub pronouns: PronounSet, pub stickers: Vec<String>, } diff --git a/src/tmpl/mod.rs b/src/tmpl/mod.rs index 35f4301..d5ae9d4 100644 --- a/src/tmpl/mod.rs +++ b/src/tmpl/mod.rs @@ -250,6 +250,15 @@ pub fn characters(characters: &Vec<Character>) -> Markup { @for character in characters { (character) } + + h2 {"Other People"} + + p{ + "Some of the characters you see in posts aren't figments of my imagination, but instead the OCs of other people." + } + + h3 #scoots {"Scoots"} + p {"My husband. The picture he uses is a screenshot of his VRChat avatar."} }, ) } |
