diff options
| author | ~willow <willow@relvokcor.xyz> | 2026-05-13 03:43:35 +0000 |
|---|---|---|
| committer | ~willow <willow@relvokcor.xyz> | 2026-05-13 03:43:35 +0000 |
| commit | 0426ed9ed01bcb439641433fa6f65b07f77fe996 (patch) | |
| tree | ced2f075d327a23c62547d4559524440215ee690 /index.html | |
| parent | d2f64e8f6461d69cb8ebc4ed7357f0cfd2cb8f62 (diff) | |
removed duplicated index pages and made toggleable html elements instead
Diffstat (limited to 'index.html')
| -rw-r--r-- | index.html | 36 |
1 files changed, 34 insertions, 2 deletions
@@ -5,6 +5,7 @@ <meta http-equiv="X-UA-Compatible" content="IE=edge"> <link rel="stylesheet" href="https://relvokcor.xyz/~willow/style.css"> <link rel="icon" type="image/png" href="https://relvokcor.xyz/~willow/favicon.png"> + <script src="script.js"></script> </head> <body> <center> @@ -21,11 +22,42 @@ <p>$ ls</p> <p> - <a href="https://relvokcor.xyz/~willow/about/">about.txt</a> - <a href="https://relvokcor.xyz/~willow/maxwell/">maxwell.txt</a> + <a onclick="toggle('about')">about.txt</a> + <a onclick="toggle('maxwell')">maxwell.txt</a> <a href="https://relvokcor.xyz/~willow/git/">git/</a> </p> + <p id="about" style="display:none;"> + $ cat about.txt + <br> + Hi, I'm Willow! Welcome to my Whimsical Space! + I am currently a jazz piano student in college working on my associate's degree, + but I'm also interested in many other subjects. + I plan on pursuing my interest in physics and computer programming after I get my aforementioned degree. + As you've already read, I have three good main interests, and while I'm currently pursuing a career in one (music), + the others remain as mere hobbies - this website being a product of it. + I also have several other services hosted by my own homelab of sorts. + Due to being a pretty substantial privacy advocate, + these services serve to replace all that I've used in the past from large tech companies. + </p> + + <div id="maxwell" style="display:none;"> + $ cat maxwell.txt + <pre> + _,-=@~ARgy_ + 4"^y:g@@$@@@$y______y= + ^`:y$@@@@@$@@@ggg@@@@F +` 4@g@@@@@M@@@@@@E@@@L + :@@@@@@@@:$y~5@F~9@@$ + `4@@@@@@@y~AF!"@@F~P$ +`' `$@@@@@@@@_` `~` $ + ' ."9@M@@@@@L @ + `_@@@ga@@@s _yf + 4@@@@@@@y 4@F + `''~5BBF~ + </pre> + </div> + <p>$ <a class="blink">█</a></p> </body> |
