67 lines
1.8 KiB
HTML
67 lines
1.8 KiB
HTML
<!doctype html>
|
|
<!-- Ref: https://developer.mozilla.org/en-US/docs/Web/API/WebGL_API/Tutorial/Adding_2D_content_to_a_WebGL_context -->
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>have you tried crying more?</title>
|
|
|
|
<script src="js/main.js" type="module"></script>
|
|
|
|
<!-- Theming -->
|
|
<link type="text/css" rel="stylesheet" href="css/themes/themes/rose-pine.css" media="all" id="theme_css">
|
|
|
|
<!-- Styling -->
|
|
<link type="text/css" rel="stylesheet" href="css/style.css">
|
|
<link type="text/css" rel="stylesheet" href="css/ppty.css">
|
|
</head>
|
|
|
|
<body>
|
|
<!-- ShadeMyCanvas (background) -->
|
|
<canvas id="bg-canvas"></canvas>
|
|
|
|
<!-- Psuedo-Pseudo-Terminal -->
|
|
<div class="centered heading">
|
|
<div class="ppty" id="boot-ppty">
|
|
|
|
<div class="ppty-block">
|
|
<div class="ppty-prompt">
|
|
grub>
|
|
</div>
|
|
|
|
<div class="ppty-command">
|
|
boot
|
|
</div>
|
|
|
|
<div class="ppty-output theme-tty-warning">
|
|
ERROR: Root device mounted successfully, but /sbin/init does not exist.<br/><br/>
|
|
|
|
<i class="theme-tty-error">
|
|
Bailing out, you are on your own.<br/>
|
|
Good luck<br/><br/>
|
|
</i>
|
|
|
|
sh: can't access tty; job control turned off<br/><br/>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="ppty-block">
|
|
<div class="ppty-prompt">
|
|
[rootfs ]#
|
|
</div>
|
|
|
|
<div class="ppty-command">
|
|
do butterflies cry when they're sad?
|
|
</div>
|
|
|
|
<div class="ppty-output">
|
|
<i class="theme-tty-error">
|
|
Segmentation fault (core dumped)
|
|
</i>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|