diff options
| author | Xe Iaso <me@xeiaso.net> | 2023-03-25 22:41:27 -0400 |
|---|---|---|
| committer | Xe Iaso <me@xeiaso.net> | 2023-03-25 22:41:27 -0400 |
| commit | 23e97b03fc95aabc0352774de25d18f003d0a890 (patch) | |
| tree | 7cee0c27e89f7f3f24450d07036be43ad801f5f5 /src | |
| parent | d259862e400693382385726909a833b99efe0a4f (diff) | |
| download | xesite-23e97b03fc95aabc0352774de25d18f003d0a890.tar.xz xesite-23e97b03fc95aabc0352774de25d18f003d0a890.zip | |
site update: Mimi
Signed-off-by: Xe Iaso <me@xeiaso.net>
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."} }, ) } |
