druvx13 commited on
Commit
fa388a7
·
verified ·
1 Parent(s): 03115a1

Add 3 files

Browse files
Files changed (3) hide show
  1. README.md +7 -5
  2. index.html +233 -19
  3. prompts.txt +1 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Tattva Bodha
3
- emoji: 🌖
4
- colorFrom: indigo
5
- colorTo: purple
6
  sdk: static
7
  pinned: false
 
 
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
1
  ---
2
+ title: tattva-bodha
3
+ emoji: 🐳
4
+ colorFrom: yellow
5
+ colorTo: pink
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite
10
  ---
11
 
12
+ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
index.html CHANGED
@@ -1,19 +1,233 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
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>Tattva Bodha - Awakening to Reality</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+
9
+ <!-- Google Fonts -->
10
+ <link href="https://fonts.googleapis.com/css2?family=Noto+Serif&family=Oswald:wght@500&display=swap" rel="stylesheet">
11
+
12
+ <!-- Animate.css -->
13
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"/>
14
+
15
+ <!-- AOS (Animate On Scroll) -->
16
+ <link href="https://unpkg.com/aos@2.3.4/dist/aos.css" rel="stylesheet">
17
+
18
+ <!-- Font Awesome for decorative icons -->
19
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css">
20
+
21
+ <style>
22
+ * {
23
+ margin: 0;
24
+ padding: 0;
25
+ box-sizing: border-box;
26
+ }
27
+
28
+ body {
29
+ font-family: 'Noto Serif', serif;
30
+ background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iMTAwIiBoZWlnaHQ9IjEwMCIgcGF0dGVyblVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgcGF0dGVyblRyYW5zZm9ybT0icm90YXRlKDQ1KSI+PHJlY3QgaWQ9InBhdHRlcm4tYmFja2dyb3VuZCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0icmdiYSgyMCwgMjAsIDIwLCAwLjg1KSIvPjxwYXRoIGQ9Ik0gMCwwIEwgMCwxMDAgTTEwMCwwIEwxMDAsMTAwIiBzdHJva2U9InJnYmEoMjU1LDI1NSwyNTUsMC4wNSkiIHN0cm9rZS13aWR0aD0iMSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3QgZmlsbD0idXJsKCNwYXR0ZXJuKSIgaGVpZ2h0PSIxMDAlIiB3aWR0aD0iMTAwJSIvPjwvc3ZnPg==') no-repeat center center fixed;
31
+ background-size: cover;
32
+ color: #fff;
33
+ line-height: 1.8;
34
+ padding: 20px;
35
+ min-height: 100vh;
36
+ }
37
+
38
+ h2 {
39
+ font-size: 1.8em;
40
+ margin-bottom: 15px;
41
+ color: #ff6b6b;
42
+ position: relative;
43
+ padding-left: 30px;
44
+ }
45
+
46
+ h2::before {
47
+ content: "✿";
48
+ position: absolute;
49
+ left: 0;
50
+ top: 0;
51
+ color: #e67e22;
52
+ font-size: 1.4em;
53
+ line-height: 1.2;
54
+ }
55
+
56
+ blockquote {
57
+ border-left: 4px solid #ffcc66;
58
+ padding-left: 15px;
59
+ margin: 20px 0;
60
+ color: #bbb;
61
+ font-style: italic;
62
+ }
63
+
64
+ /* Corner decoration SVG as data URI */
65
+ .corner-decoration {
66
+ position: absolute;
67
+ width: 60px;
68
+ height: 60px;
69
+ background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIj48cGF0aCBmaWxsPSJub25lIiBzdHJva2U9IiNlNjc5MjIiIHN0cm9rZS13aWR0aD0iNCIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBkPSJNMTI4IDEyOGwxMjggMTI4bC0xMjggMTI4bTEyOCAxMjhsMTI4LTEyOGwtMTI4LTEyOG0xMjgtMTI4bDEyOCAxMjhsLTEyOCAxMjgiLz48L3N2Zz4=');
70
+ background-size: contain;
71
+ z-index: 0;
72
+ }
73
+
74
+ .top-left {
75
+ top: 10px;
76
+ left: 10px;
77
+ }
78
+
79
+ .top-right {
80
+ top: 10px;
81
+ right: 10px;
82
+ transform: rotate(90deg);
83
+ }
84
+
85
+ .bottom-left {
86
+ bottom: 10px;
87
+ left: 10px;
88
+ transform: rotate(-90deg);
89
+ }
90
+
91
+ .bottom-right {
92
+ bottom: 10px;
93
+ right: 10px;
94
+ transform: rotate(180deg);
95
+ }
96
+
97
+ /* Custom scrollbar */
98
+ ::-webkit-scrollbar {
99
+ width: 8px;
100
+ }
101
+
102
+ ::-webkit-scrollbar-track {
103
+ background: rgba(255,255,255,0.05);
104
+ }
105
+
106
+ ::-webkit-scrollbar-thumb {
107
+ background: rgba(255,204,102,0.5);
108
+ border-radius: 4px;
109
+ }
110
+
111
+ ::-webkit-scrollbar-thumb:hover {
112
+ background: rgba(255,204,102,0.8);
113
+ }
114
+ </style>
115
+ </head>
116
+ <body data-aos-easing="ease-in-out" data-aos-duration="800" data-aos-delay="0">
117
+
118
+ <div class="container max-w-4xl mx-auto bg-gray-900 bg-opacity-85 rounded-xl p-8 shadow-xl shadow-white/5 relative">
119
+ <div class="corner-decoration top-left"></div>
120
+ <div class="corner-decoration top-right"></div>
121
+ <div class="corner-decoration bottom-left"></div>
122
+ <div class="corner-decoration bottom-right"></div>
123
+
124
+ <header class="text-center mb-10">
125
+ <h1 class="animate__animated animate__bounceInDown text-4xl md:text-5xl font-bold tracking-wider text-amber-300 uppercase font-oswald mb-2 text-shadow-lg">Tattva Bodha</h1>
126
+ <p class="italic text-gray-300">The Awakening to Reality by Adi Sankaracharya</p>
127
+ </header>
128
+
129
+ <section class="mb-12" data-aos="fade-up">
130
+ <h2 class="text-2xl font-semibold mb-4">I. The Four Perfections</h2>
131
+ <p class="text-gray-200 mb-4">To the Master, the World-Soul, the Master of seekers for union, obeisance; to the teacher, the giver of wisdom.</p>
132
+
133
+ <blockquote class="border-l-4 border-amber-300 pl-4 my-6 text-gray-300 italic">
134
+ We shall tell of the way of discerning reality, the perfection of freedom, for those who are fitted by possessing the Four Perfections.
135
+ </blockquote>
136
+
137
+ <ul class="list-disc pl-6 space-y-3 text-gray-200">
138
+ <li><strong class="text-amber-200">Viveka:</strong> Discernment between lasting and unlasting things.</li>
139
+ <li><strong class="text-amber-200">Vyragya:</strong> No rage for enjoying the fruit of works, either here or there.</li>
140
+ <li><strong class="text-amber-200">Sad Sampatti:</strong> Six graces that follow peace — Peace, Self-Control, Steadiness, Sturdiness, Confidence, Intentness.</li>
141
+ <li><strong class="text-amber-200">Mumukshutva:</strong> Longing to be free.</li>
142
+ </ul>
143
+
144
+ <p class="text-gray-200 mt-6">Through these four perfections, men are fitted to discern reality.</p>
145
+ </section>
146
+
147
+ <section class="mb-12" data-aos="fade-up">
148
+ <h2 class="text-2xl font-semibold mb-4">II. What is the Self?</h2>
149
+ <p class="text-gray-200 mb-4">The Self stands apart from the Physical, the Emotional, and the Causal Vestures; beyond the five Veils; witness of the three Modes. His own nature is Being, Consciousness, Bliss — this is the Self.</p>
150
+
151
+ <ul class="list-disc pl-6 space-y-3 text-gray-200">
152
+ <li><strong class="text-amber-200">Being:</strong> That which stands through the Three Times — Past, Present, Future.</li>
153
+ <li><strong class="text-amber-200">Consciousness:</strong> The own-nature of perceiving.</li>
154
+ <li><strong class="text-amber-200">Bliss:</strong> The own-nature of joy.</li>
155
+ </ul>
156
+
157
+ <blockquote class="border-l-4 border-amber-300 pl-4 my-6 text-gray-300 italic">
158
+ Thus let a man know that the own-nature of his own Self is Being, Consciousness, Bliss.
159
+ </blockquote>
160
+ </section>
161
+
162
+ <section class="mb-12" data-aos="fade-up">
163
+ <h2 class="text-2xl font-semibold mb-4">III. The Three Vestures</h2>
164
+ <ol class="list-decimal pl-6 space-y-3 text-gray-200">
165
+ <li><strong class="text-amber-200">Physical Vesture (sthula sarira):</strong> Formed of the fivefold elements, born through works, it is the house where pleasure and pain are enjoyed.</li>
166
+ <li><strong class="text-amber-200">Emotional Vesture (sookshma sarira):</strong> Formed of the non-fivefold elements, it consists of seventeen phases — the five powers of knowing, five of doing, five lives, emotion, and soul.</li>
167
+ <li><strong class="text-amber-200">Causal Vesture (karana sarira):</strong> Born of beginningless unwisdom, it is the cause of the other two vestures.</li>
168
+ </ol>
169
+ </section>
170
+
171
+ <section class="mb-12" data-aos="fade-up">
172
+ <h2 class="text-2xl font-semibold mb-4">IV. The Three Modes</h2>
173
+ <ul class="list-disc pl-6 space-y-3 text-gray-200">
174
+ <li><strong class="text-amber-200">Waking (Jagrat):</strong> Knowledge comes through Hearing and other knowing powers.</li>
175
+ <li><strong class="text-amber-200">Dreaming (Swapna):</strong> The world appears in rest, generated by impressions of waking life.</li>
176
+ <li><strong class="text-amber-200">Dreamlessness (Sushupti):</strong> A state where one perceives nothing outwardly and enjoys bliss inwardly.</li>
177
+ </ul>
178
+ </section>
179
+
180
+ <section class="mb-12" data-aos="fade-up">
181
+ <h2 class="text-2xl font-semibold mb-4">V. The Five Veils</h2>
182
+ <ul class="list-disc pl-6 space-y-3 text-gray-200">
183
+ <li><strong class="text-amber-200">Food-formed (annamaya kosa)</strong></li>
184
+ <li><strong class="text-amber-200">Life-formed (pranamaya kosa)</strong></li>
185
+ <li><strong class="text-amber-200">Emotion-formed (manomaya kosa)</strong></li>
186
+ <li><strong class="text-amber-200">Knowledge-formed (vijnanamaya kosa)</strong></li>
187
+ <li><strong class="text-amber-200">Bliss-formed (anandamaya kosa)</strong></li>
188
+ </ul>
189
+ </section>
190
+
191
+ <section class="mb-12" data-aos="fade-up">
192
+ <h2 class="text-2xl font-semibold mb-4">VI. Maya, Life, and the Lord</h2>
193
+ <p class="text-gray-200 mb-4">There is an image of the Eternal, called the Life, who attributes himself to the vestures. Through the power of Nature, he sees the Lord as separate.</p>
194
+
195
+ <p class="text-gray-200 mb-4">When wearing the disguise of Unwisdom, the Self is called the Life. When wearing the disguise of Glamor, the Self is called the Lord.</p>
196
+
197
+ <blockquote class="border-l-4 border-amber-300 pl-4 my-6 text-gray-300 italic">
198
+ But the difference between Life and Lord is only apparent. In truth, both are pure Consciousness.
199
+ </blockquote>
200
+ </section>
201
+
202
+ <section class="mb-12" data-aos="fade-up">
203
+ <h2 class="text-2xl font-semibold mb-4">VII. The Free-in-Life (Jivanmukta)</h2>
204
+ <p class="text-gray-200 mb-4">He who realizes "I am stainless Being, Consciousness, Bliss," and knows this by direct perception, is Free-in-life.</p>
205
+
206
+ <p class="text-gray-200 mb-6">Once the knowledge "I am the Eternal" arises, all bonds of deeds dissolve.</p>
207
+
208
+ <h3 class="text-xl font-semibold mb-3 text-amber-200">Three Kinds of Deeds:</h3>
209
+ <ul class="list-disc pl-6 space-y-3 text-gray-200">
210
+ <li><strong class="text-amber-200">Deeds to come:</strong> Pure and impure actions done after wisdom is gained.</li>
211
+ <li><strong class="text-amber-200">Deeds accumulated:</strong> Actions waiting to manifest from past births.</li>
212
+ <li><strong class="text-amber-200">Deeds entered on:</strong> Actions experienced now and ended through experience.</li>
213
+ </ul>
214
+ </section>
215
+
216
+ <footer class="text-center text-sm text-gray-400 mt-16 pt-6 border-t border-gray-700" data-aos="fade-up">
217
+ <p class="mb-2"><i class="fas fa-book-open mr-2 text-amber-300"></i> Thus the Awakening to Reality is completed.</p>
218
+ <p>Translated by Charles Johnston</p>
219
+ </footer>
220
+ </div>
221
+
222
+ <!-- AOS JS -->
223
+ <script src="https://unpkg.com/aos@2.3.4/dist/aos.js"></script>
224
+
225
+ <!-- Initialize AOS -->
226
+ <script>
227
+ AOS.init({
228
+ duration: 1000,
229
+ once: false
230
+ });
231
+ </script>
232
+ <p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=druvx13/tattva-bodha" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
233
+ </html>
prompts.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ Same in design but this time showing detailed details of Adi Shankaracharya and also provided two [tattva-bodha.html, atma-bodha.html] of his works if wanted to read.