webbed-site/index.html
2025-11-15 13:43:23 +00:00

36 lines
1.5 KiB
HTML
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html>
<head>
<title>Ceres Sees All</title>
<link rel="stylesheet" href="style.css" />
<link rel="icon" type="image/x-icon" href="assets/favicon.ico">
<script src="https://cdn.jsdelivr.net/npm/jquery"></script>
<script src="assets/terminal.js"></script>
</head>
<body class="">
<template id="greetings">
[[;#f5c2e7;]
▄▖ ▄▖ ▄▖▜ ▜
▌ █▌▛▘█▌▛▘▄▖▚ █▌█▌▛▘▄▖▌▌▐ ▐
▙▖▙▖▌ ▙▖▄▌ ▄▌▙▖▙▖▄▌ ▛▌▐▖▐▖
I'm watching you...]
Type 'help' to get started
</template>
<script>
$('body').terminal({
help: function() {
this.echo('Some commands to get you started:\n • about: show about info\n\n...Thats it for now, sorgy');
},
about: function() {
this.echo("Hi! I'm Ceres o/\n \nI'm a uni student studying astrophyics, and have a large interest in anything linux related\nI help moderate the linuxposting community across its many locations, including hosting our tilde and a few other services, and I'm a (occasionally active) contributer to the gentoo and guru package repositories\n\n\n\n(P.S.) [[;#f5c2e7;]I really am watching you :3]");
}
},
{
greetings: greetings.innerHTML,
prompt: "[[;#f5c2e7;]:3] > ",
});
</script>
</body>
</html>