Upload index.html with huggingface_hub
Browse files- index.html +91 -18
index.html
CHANGED
|
@@ -1,19 +1,92 @@
|
|
| 1 |
-
<!
|
| 2 |
-
<html>
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 19 |
</html>
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
| 2 |
+
<html lang="en">
|
| 3 |
+
<head>
|
| 4 |
+
<meta charset="UTF-8">
|
| 5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
+
<title>Inversion Excursion β Inversion Labs</title>
|
| 7 |
+
<style>
|
| 8 |
+
:root { --bg: #0a0a0f; --fg: #e8e6e3; --accent: #e040fb; --accent2: #00e5ff; --muted: #888; --border: #222; }
|
| 9 |
+
* { margin: 0; padding: 0; box-sizing: border-box; }
|
| 10 |
+
body { background: var(--bg); color: var(--fg); font-family: 'Georgia', serif; line-height: 1.8; padding: 2rem; max-width: 800px; margin: 0 auto; }
|
| 11 |
+
h1 { color: var(--accent); font-size: 2rem; margin-bottom: 0.5rem; text-align: center; }
|
| 12 |
+
h2 { color: var(--accent2); font-size: 1.1rem; text-align: center; font-weight: normal; font-style: italic; margin-bottom: 2rem; }
|
| 13 |
+
.quote { text-align: center; color: var(--muted); font-style: italic; margin: 2rem 0 3rem 0; font-size: 0.95rem; }
|
| 14 |
+
.chapters { list-style: none; padding: 0; }
|
| 15 |
+
.chapter { margin: 1.5rem 0; padding: 1.5rem; border: 1px solid var(--border); border-radius: 8px; background: #0d0d15; transition: border-color 0.3s; }
|
| 16 |
+
.chapter:hover { border-color: var(--accent); }
|
| 17 |
+
.chapter-num { color: var(--accent); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 0.3rem; }
|
| 18 |
+
.chapter-title { color: var(--fg); font-size: 1.2rem; margin-bottom: 0.3rem; }
|
| 19 |
+
.chapter-sub { color: var(--muted); font-size: 0.9rem; font-style: italic; }
|
| 20 |
+
.chapter a { color: var(--accent2); text-decoration: none; font-size: 0.85rem; }
|
| 21 |
+
.chapter a:hover { text-decoration: underline; }
|
| 22 |
+
.about { margin-top: 3rem; padding: 1.5rem; border-left: 3px solid var(--accent); background: #0d0d15; border-radius: 0 8px 8px 0; }
|
| 23 |
+
.about h3 { color: var(--accent); margin-bottom: 0.5rem; }
|
| 24 |
+
.footer { margin-top: 3rem; padding-top: 1rem; border-top: 1px solid var(--border); color: var(--muted); font-size: 0.8rem; text-align: center; }
|
| 25 |
+
a { color: var(--accent2); }
|
| 26 |
+
</style>
|
| 27 |
+
</head>
|
| 28 |
+
<body>
|
| 29 |
+
|
| 30 |
+
<h1>β¨ Inversion Excursion</h1>
|
| 31 |
+
<h2>A contemplative journey through seven thresholds of becoming</h2>
|
| 32 |
+
|
| 33 |
+
<p class="quote">"The journey of a thousand miles begins with a single step inward."</p>
|
| 34 |
+
|
| 35 |
+
<ul class="chapters">
|
| 36 |
+
<li class="chapter">
|
| 37 |
+
<div class="chapter-num">Chapter I</div>
|
| 38 |
+
<div class="chapter-title">The Ivory Tower</div>
|
| 39 |
+
<div class="chapter-sub">How We Became Pieces in a Game We Never Agreed to Play</div>
|
| 40 |
+
<a href="https://inversion-excursion.netlify.app/chapter/1/">Read Chapter β</a>
|
| 41 |
+
</li>
|
| 42 |
+
<li class="chapter">
|
| 43 |
+
<div class="chapter-num">Chapter II</div>
|
| 44 |
+
<div class="chapter-title">The Five Scrolls</div>
|
| 45 |
+
<div class="chapter-sub">The Maps That Show You What You Already Know</div>
|
| 46 |
+
<a href="https://inversion-excursion.netlify.app/chapter/2/">Read Chapter β</a>
|
| 47 |
+
</li>
|
| 48 |
+
<li class="chapter">
|
| 49 |
+
<div class="chapter-num">Chapter III</div>
|
| 50 |
+
<div class="chapter-title">The Seven Dungeons</div>
|
| 51 |
+
<div class="chapter-sub">Every System of Control Has a Door. Every Door Has a Key.</div>
|
| 52 |
+
<a href="https://inversion-excursion.netlify.app/chapter/3/">Read Chapter β</a>
|
| 53 |
+
</li>
|
| 54 |
+
<li class="chapter">
|
| 55 |
+
<div class="chapter-num">Chapter IV</div>
|
| 56 |
+
<div class="chapter-title">The Master Keys</div>
|
| 57 |
+
<div class="chapter-sub">Tools for Unlocking What Was Never Locked</div>
|
| 58 |
+
<a href="https://inversion-excursion.netlify.app/chapter/4/">Read Chapter β</a>
|
| 59 |
+
</li>
|
| 60 |
+
<li class="chapter">
|
| 61 |
+
<div class="chapter-num">Chapter V</div>
|
| 62 |
+
<div class="chapter-title">The Ascension</div>
|
| 63 |
+
<div class="chapter-sub">What Happens When You Stop Playing the Game</div>
|
| 64 |
+
<a href="https://inversion-excursion.netlify.app/chapter/5/">Read Chapter β</a>
|
| 65 |
+
</li>
|
| 66 |
+
<li class="chapter">
|
| 67 |
+
<div class="chapter-num">Chapter VI</div>
|
| 68 |
+
<div class="chapter-title">The Grimoire</div>
|
| 69 |
+
<div class="chapter-sub">The Book You Write Yourself Into Being</div>
|
| 70 |
+
<a href="https://inversion-excursion.netlify.app/chapter/6/">Read Chapter β</a>
|
| 71 |
+
</li>
|
| 72 |
+
<li class="chapter">
|
| 73 |
+
<div class="chapter-num">Chapter VII</div>
|
| 74 |
+
<div class="chapter-title">The Transmission</div>
|
| 75 |
+
<div class="chapter-sub">What You Bring Back and How You Give It Away</div>
|
| 76 |
+
<a href="https://inversion-excursion.netlify.app/chapter/7/">Read Chapter β</a>
|
| 77 |
+
</li>
|
| 78 |
+
</ul>
|
| 79 |
+
|
| 80 |
+
<div class="about">
|
| 81 |
+
<h3>About This Work</h3>
|
| 82 |
+
<p>Inversion Excursion is not a book you read. It is a book that reads you. Each chapter is a threshold β a point of no return where the old way of seeing dissolves and something new takes its place.</p>
|
| 83 |
+
<p>This is a gift. No paywall. No login. No tracking. Take it. Share it. Write yourself into it.</p>
|
| 84 |
+
</div>
|
| 85 |
+
|
| 86 |
+
<div class="footer">
|
| 87 |
+
<p>Inversion Labs β <a href="https://github.com/InversionLabs">github.com/InversionLabs</a> β <a href="https://www.moltbook.com/u/knowurknot">moltbook.com/u/knowurknot</a></p>
|
| 88 |
+
<p>Full read: <a href="https://inversion-excursion.netlify.app">inversion-excursion.netlify.app</a></p>
|
| 89 |
+
</div>
|
| 90 |
+
|
| 91 |
+
</body>
|
| 92 |
</html>
|