Add descriptions to more pages
Also implement an `embed-description` component
This commit is contained in:
parent
89b1ccc791
commit
b0e12a688e
|
@ -1,8 +1,14 @@
|
|||
{ role=config }
|
||||
``` =toml
|
||||
hidden = true
|
||||
created_at = "2025-03-03T22:34:06+01:00"
|
||||
```
|
||||
|
||||
{ role=description }
|
||||
:::
|
||||
Let the glass shimmer.
|
||||
:::
|
||||
|
||||
# Arcaea for pookies
|
||||
|
||||
This is a private server for the rhythm game Arcaea. If you found this page, then feel free to join! Report any bugs to me via your preferred channel of communication.
|
||||
|
@ -73,3 +79,7 @@ On IOS, installation is much trickier, and will require an external computer:
|
|||
8. Log into _Sideloadly_ with your Apple ID, and start the sideloading process. Along the way, you'll likely have to enable "developer mode" on your apple device (the steps required differ from IOS version to version), and trust apps sideloaded by the apple ID transferring the app (in this case, your ID).
|
||||
|
||||
You will need to refresh the installation every week. This should happen automatically when you connect your device to your computer by cable around the expiration date. This can also be performed via WiFi by following the steps outlined in the _Sideloadly_ documentation. For troubleshooting and help, contact me.
|
||||
|
||||
## Discord integration
|
||||
|
||||
We have a discord bot, featuring cool stuff like B30 rendering! DM `shimmeringmoon#8703` to see it in action.
|
||||
|
|
|
@ -4,9 +4,15 @@ sitemap_changefreq = "weekly"
|
|||
sitemap_priority = 0.7
|
||||
```
|
||||
|
||||
{ role="description" }
|
||||
:::
|
||||
_"Remnants of the One who once dwelled within the Silver of the Sky. They now wander endlessly through the mists of the heavens, at times drawn to lost vessels who seek to hear them. Thence, thou with this knowledge are yet to attain the full knowledge of the Plan, but worry not — the World shall linger much longer still."_
|
||||
:::
|
||||
|
||||
# Echoes
|
||||
|
||||
> _"Remnants of the One who once dwelled within the Silver of the Sky. They now wander endlessly through the mists of the heavens, at times drawn to lost vessels who seek to hear them. Thence, thou with this knowledge are yet to attain the full knowledge of the Plan, but worry not — the World shall linger much longer still."_
|
||||
> ::: embed-description
|
||||
> :::
|
||||
|
||||
This page contains a list of all my long-form blog posts.
|
||||
|
||||
|
|
|
@ -1,5 +1,10 @@
|
|||
# Hiii
|
||||
|
||||
{ role="description" }
|
||||
:::
|
||||
Wassup, this is the home page of my ethereal realm (read: website). Feel free to poke around :3
|
||||
:::
|
||||
|
||||
Welcome to my ethereal realm (read: website). This place is still being conjured (read: under construction), hence some things might be startlingly empty.
|
||||
|
||||
I'm known as `prescientmoon`, or sometimes `PGW`. I study mathematics, but I also really like coding and all computer-related sorcery. I love games of all kinds, although rhythm games have a special place in my heart.
|
||||
|
|
12
src/html.rs
12
src/html.rs
|
@ -400,6 +400,18 @@ impl<'s> Writer<'s> {
|
|||
self.states.push(State::Ignore);
|
||||
}
|
||||
// }}}
|
||||
// {{{ Embed description
|
||||
Container::Div {
|
||||
class: "embed-description",
|
||||
} => {
|
||||
for event in &self.metadata.description {
|
||||
self.render_event(event, out)?;
|
||||
}
|
||||
|
||||
// We don't care about the contents of this block
|
||||
self.states.push(State::Ignore);
|
||||
}
|
||||
// }}}
|
||||
// {{{ Figure
|
||||
Container::Div { class: "figure" } => {
|
||||
self.states.push(State::Figure);
|
||||
|
|
Loading…
Reference in a new issue