This commit is contained in:
2025-07-05 11:21:59 +02:00
parent 4a327407d7
commit 0e8c92cd13
2 changed files with 18 additions and 5 deletions

View File

@@ -1,5 +1,3 @@
#let alex_contact_url = "https://alex.vxcc.dev"
#let to-bool(str) = {
if str == "true" {
return true
@@ -271,3 +269,18 @@ document.addEventListener('scroll', (event) => {
}
])
}
#let people = (
alex: (
nick: "alex_s168",
url: "https://alex.vxcc.dev"
),
ote: (
nick: "otesunki",
url: "https://512b.dev/ote/"
),
)
#let person(p) = {
flink(p.url, p.nick)
}