This commit is contained in:
Krrish Ghimire
2025-07-19 12:55:42 +05:45
commit dd3408c173
19 changed files with 522 additions and 0 deletions

90
terminal.html Normal file
View File

@@ -0,0 +1,90 @@
<!DOCTYPE html>
<html>
<head>
<title>🧙 Digital Temple Terminal</title>
<style>
body {
background-color: black;
color: lime;
font-family: monospace;
margin: 0;
padding: 20px;
}
.terminal {
max-width: 800px;
margin: auto;
border: 2px solid lime;
padding: 20px;
}
.cmd {
color: #00ff00;
}
.input-line::before {
content: "⛩️ temple@nepal:~$ ";
color: #0f0;
}
.ascii-art {
color: #0f0;
font-weight: bold;
white-space: pre;
text-align: left;
margin-top: 20px;
}
a {
color: cyan;
text-decoration: none;
}
</style>
</head>
<body>
<div class="terminal">
<div class="ascii-art">
____ _ _ _ _
| _ \\| |_ _ | |_| |_ ___ _ __ __| | ___
| | | | | | | || __| __|/ _ \\ '__/ _` |/ _ \\
| |_| | | |_| || |_| |_| __/ | | (_| | (_) |
|____/|_|\\__,_| \\__|\\__|\\___|_| \\__,_|\\___/
</div>
<p class="cmd">Welcome to the Digital Temple Terminal — Savage Edition</p>
<p class="cmd">Loading sacred configuration...</p>
<div class="cmd">🕉️ Sourcing ~/.moksha_profile ... Done.</div>
<div class="cmd">🧘 Initializing chill_vibes.sh ... Done.</div>
<div class="cmd">☕ Brewing coffee_level=max ... Done.</div>
<br>
<div class="input-line">fortune | cowsay</div>
<pre>
_________________________________________
/ Enlightenment doesn't need JavaScript. \\
\\ Use HTML. Use CSS. Bloat not thy site. /
-----------------------------------------
\\ ^__^
\\ (oo)\\_______
(__)\\ )\\/\\
||----w |
|| ||
</pre>
<br>
<div class="input-line">cat /usr/share/temple/secrets.txt</div>
<pre>
+---------------------- SECRET TEMPLE KNOWLEDGE ---------------------+
| * The fastest websites are still hand-written in Vim. |
| * You can't crash what you never bloated. |
| * Real monks disable telemetry. |
+--------------------------------------------------------------------+
</pre>
<br>
<div class="input-line">links index.html</div>
<p>📄 <a href="home.html">Return to homepage</a></p>
</div>
</body>
</html>