mirror of
https://git.ari.lt/ari.lt/ari.lt.git
synced 2025-02-04 17:49:24 +01:00
68 lines
1.4 KiB
JavaScript
68 lines
1.4 KiB
JavaScript
const boot = document.getElementById('boot');
|
|
const site_name = 'ari-web';
|
|
const boot_message = {
|
|
0: {
|
|
"type": 'ok',
|
|
"text": `Booting '${site_name}'...`,
|
|
"sleep_time": 0
|
|
}
|
|
}
|
|
const do_sleep = true;
|
|
const locations = {
|
|
0: {
|
|
"url": "https://github.com/TruncatedDinosour/website",
|
|
"desc": "The source code of this website",
|
|
"aliases": [
|
|
"src", "source",
|
|
"git", "github"
|
|
]
|
|
},
|
|
|
|
1: {
|
|
"url": "/",
|
|
"desc": "The home page",
|
|
"aliases": [
|
|
"home", "root",
|
|
"index"
|
|
]
|
|
},
|
|
|
|
2: {
|
|
"url": "/page/reset",
|
|
"desc": "Reset your account",
|
|
"aliases": [
|
|
"reset", "erase",
|
|
"del", "delete"
|
|
]
|
|
},
|
|
|
|
3: {
|
|
"url": "/page/minimal.txt",
|
|
"desc": "The minimal page",
|
|
"aliases": [
|
|
"mini", "minimal",
|
|
"txt", "min"
|
|
]
|
|
},
|
|
|
|
4: {
|
|
"url": "mailto:truncateddinosour@gmail.com",
|
|
"desc": "Contact me",
|
|
"aliases": [
|
|
"contact", "mail",
|
|
"email", "gmail"
|
|
]
|
|
}
|
|
}
|
|
const escape_HTML = str =>
|
|
str.replace(
|
|
/[&<>'"]/g,
|
|
tag =>
|
|
({
|
|
'&': '&',
|
|
'<': '<',
|
|
'>': '>',
|
|
"'": ''',
|
|
'"': '"'
|
|
}[tag] || tag)
|
|
);
|