forked from vishal02527/My-Strength-Shree-Krishna
-
Notifications
You must be signed in to change notification settings - Fork 0
/
srimad_bhagavatam_details.html
374 lines (327 loc) · 22.7 KB
/
srimad_bhagavatam_details.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Srimad Bhagavatam Details</title>
<script src="https://kit.fontawesome.com/d74f12bccc.js" crossorigin="anonymous"></script>
<style>
.chatbot-container {
position: fixed;
bottom: 20px; /* Adjust as needed */
right: 90px; /* Adjust as needed */
z-index: 1000; /* Ensure it appears above other elements */
}
.chatbot-button {
border: none;
border-radius: 50%;
padding: 5px; /* Smaller padding */
cursor: pointer;
position: relative;
width: 50px; /* Adjusted size */
height: 50px; /* Adjusted size */
}
.chatbot-button img {
width: 30px; /* Adjusted image size */
height: 30px; /* Adjusted image size */
}
.tooltip-text {
display: none; /* Hide by default */
position: absolute;
bottom: 100%; /* Position above the button */
right: 50%;
transform: translateX(50%);
background-color: #333; /* Background color for tooltip */
color: #fff; /* Tooltip text color */
padding: 5px;
border-radius: 5px;
white-space: nowrap; /* Prevent text from wrapping */
}
.chatbot-button:hover .tooltip-text {
display: block; /* Show on hover */
}
body {
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
background-image: var(--bg-color);
color: #333;
padding: 0;
margin: 0;
overflow-x: hidden;
}
.content {
padding: 20px 120px;
margin-bottom: 50px;
}
.content h1 {
text-align: center;
margin-bottom: 40px;
font-size: 36px;
font-weight: 900;
background: var(--ternary-color);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.content p {
font-size: 18px;
line-height: 1.6;
color: var(--secondary-color);
margin-bottom: 15px;
}
h2 {
color: #ab9353;
margin-top: 30px;
font-size: 24px;
font-weight: bold;
}
.back-button {
display: inline-block;
margin-bottom: 20px;
padding: 10px 20px;
background-color: #ab9353;
color: white;
text-decoration: none;
border-radius: 5px;
transition: background-color 0.3s ease;
}
.back-button:hover {
background-color: #8c7a44;
}
.section {
background-color: var(--primary-color);
color: var(--secondary-color);
border-radius: 10px;
padding: 20px;
margin-top: 30px;
}
.section h3 {
color: var(--forth-color);
margin-top: 0;
}
.section ul {
padding-left: 20px;
}
.section li {
margin-bottom: 10px;
}
.shloka {
margin-bottom: 30px;
}
.sanskrit {
font-style: italic;
color: #ab9353;
margin-bottom: 10px;
}
.transliteration {
color: #555;
margin-bottom: 10px;
}
.translation {
font-weight: bold;
}
.explanation {
margin-top: 10px;
font-size: 0.9em;
}
/* Mobile Responsive Styles */
@media (max-width: 768px) {
.content {
padding: 20px 15px;
}
.content h1 {
font-size: 22px;
}
.content p {
font-size: 14px;
}
h2 {
font-size: 20px;
}
.section {
padding: 15px;
}
.section h3 {
font-size: 18px;
}
.section li {
font-size: 14px;
}
.back-button {
font-size: 14px;
padding: 8px 16px;
}
}
.language-toggle {
position: fixed;
top: 20px;
right: 20px;
background-color: #ab9353;
color: white;
border: none;
padding: 10px 20px;
border-radius: 5px;
cursor: pointer;
font-size: 16px;
z-index: 1000;
}
.language-toggle:hover {
background-color: #8c7a44;
}
#icon{
width: 30px;
cursor: pointer;
position: absolute;
right:135px;
top: 25px;
}
:root{
--bg-color: url(https://www.hitaambrish.com/stat/img/home/quotes-bg.jpg);
--primary-color: #fff;
--secondary-color: #0e0e0e;
--ternary-color: linear-gradient(to right, #30cfd0 20%, #330867 100%);
--forth-color: #330867;
}
.dark-theme{
--bg-color: url(https://www.hitaambrish.com/stat/img/home/Gallery_Bg.jpg);
--primary-color: #0e0e0e;
--secondary-color: #fff;
--ternary-color: #ab9353;
--forth-color: lightblue;
}
</style>
</head>
<body>
<img src="images/moon.png" id="icon">
<button id="languageToggle" class="language-toggle" onclick="toggleLanguage()">हिंदी में पढ़ें</button>
<div class="content">
<a href="scriptures.html" class="back-button" data-translate="back">← Back to Scriptures</a>
<h1 data-translate="title">Srimad Bhagavatam</h1>
<h2 data-translate="introduction">Introduction</h2>
<p data-translate="intro-text">The Srimad Bhagavatam, also known as Bhagavata Purana, is one of Hinduism's eighteen great Puranas (Mahapuranas). It is a revered text in Vaishnavism, particularly for its focus on bhakti (devotion) to Supreme God Vishnu and his avatars, including Krishna.</p>
<h2 data-translate="historical-context">Historical and Cultural Context</h2>
<p data-translate="historical-text">Traditionally attributed to the sage Vyasa, the Bhagavatam is believed to have been composed around 3000 BCE. It consists of 12 books (skandhas) with 18,000 verses. The text is a narrative history of Krishna and various avatars of Vishnu, interwoven with philosophical and metaphysical elements.</p>
<h2 data-translate="key-teachings">Key Teachings</h2>
<p data-translate="teachings-text">The Bhagavatam emphasizes devotional service to God and the cultivation of detachment from the material world. It presents a philosophy of monotheism where Krishna is seen as the supreme form of God.</p>
<div class="section">
<h3 data-translate="stories-characters">Notable Stories and Characters</h3>
<ul>
<li data-translate="story-1">The Birth of Krishna: The miraculous appearance of Krishna and his childhood pastimes.</li>
<li data-translate="story-2">The Lifting of Govardhan Hill: Krishna's feat of lifting a mountain to protect his devotees.</li>
<li data-translate="story-3">The Rasa Lila: Krishna's divine dance with the gopis, symbolizing the soul's longing for God.</li>
<li data-translate="story-4">Prahlada and Narasimha: The story of a young devotee and the half-man, half-lion avatar of Vishnu.</li>
<li data-translate="story-5">The Churning of the Ocean: A creation myth involving gods, demons, and the emergence of divine objects and beings.</li>
</ul>
</div>
<div class="section">
<h3 data-translate="important-teachings">Important Teachings</h3>
<ul>
<li data-translate="teaching-1">Bhakti Yoga: The path of loving devotion to God as the supreme means of liberation.</li>
<li data-translate="teaching-2">The Nature of the Absolute Truth: Descriptions of the personal and impersonal aspects of the Divine.</li>
<li data-translate="teaching-3">The Concept of Lila: Understanding God's activities as divine play or sport.</li>
<li data-translate="teaching-4">The Importance of Satsang: The value of associating with devotees and spiritual practitioners.</li>
<li data-translate="teaching-5">The Transient Nature of Material Existence: Encouraging detachment from worldly pursuits.</li>
</ul>
</div>
<div class="section">
<h3 data-translate="famous-verses">Famous Verses</h3>
<div class="verse">
<h4 data-translate="verse-1-title">First Verse of Srimad Bhagavatam (1.1.1)</h4>
<p data-translate="verse-1-translation">"I meditate upon Him, the transcendent reality, the source of all that exists, who is self-sufficient and fully cognizant of everything directly and indirectly. It is He who imparted Vedic knowledge into the heart of Brahma, the first created being. Even great sages and demigods are bewildered in their attempts to understand Him, for He is beyond the material nature. As the ethereal element provides space for the interaction of material objects, He is the ultimate shelter of all gross and subtle cosmic manifestations. Material nature appears real because of Him, yet He is always free from material contamination. I meditate upon Him, the eternal Supreme Truth."</p>
<p data-translate="verse-1-explanation">This verse, known as the "seed verse" of Srimad Bhagavatam, encapsulates the essence of the entire text. It describes the nature of the Absolute Truth as the source of all creation, beyond material nature, and the ultimate object of meditation and devotion.</p>
</div>
</div>
</div>
<!-- Chatbot code added here -->
<a href="chatbot.html">
<div class="fixed bottom-0 right-2 chatbot-container">
<button class="chatbot-button group">
<img class="h-20" src="panditji.png" alt="chatbot" />
<span class="tooltip-text">
Radhe Radhe🙏<br />
How can I help You?🌸
</span>
</button>
</div>
</a>
<script>
const translations = {
'en': {
'languageToggle': 'हिंदी में पढ़ें',
'back': '← Back to Scriptures',
'title': 'Srimad Bhagavatam',
'introduction': 'Introduction',
'intro-text': 'The Srimad Bhagavatam, also known as Bhagavata Purana, is one of Hinduism\'s eighteen great Puranas (Mahapuranas). It is a revered text in Vaishnavism, particularly for its focus on bhakti (devotion) to Supreme God Vishnu and his avatars, including Krishna.',
'historical-context': 'Historical and Cultural Context',
'historical-text': 'Traditionally attributed to the sage Vyasa, the Bhagavatam is believed to have been composed around 3000 BCE. It consists of 12 books (skandhas) with 18,000 verses. The text is a narrative history of Krishna and various avatars of Vishnu, interwoven with philosophical and metaphysical elements.',
'key-teachings': 'Key Teachings',
'teachings-text': 'The Bhagavatam emphasizes devotional service to God and the cultivation of detachment from the material world. It presents a philosophy of monotheism where Krishna is seen as the supreme form of God.',
'stories-characters': 'Notable Stories and Characters',
'story-1': 'The Birth of Krishna: The miraculous appearance of Krishna and his childhood pastimes.',
'story-2': 'The Lifting of Govardhan Hill: Krishna\'s feat of lifting a mountain to protect his devotees.',
'story-3': 'The Rasa Lila: Krishna\'s divine dance with the gopis, symbolizing the soul\'s longing for God.',
'story-4': 'Prahlada and Narasimha: The story of a young devotee and the half-man, half-lion avatar of Vishnu.',
'story-5': 'The Churning of the Ocean: A creation myth involving gods, demons, and the emergence of divine objects and beings.',
'important-teachings': 'Important Teachings',
'teaching-1': 'Bhakti Yoga: The path of loving devotion to God as the supreme means of liberation.',
'teaching-2': 'The Nature of the Absolute Truth: Descriptions of the personal and impersonal aspects of the Divine.',
'teaching-3': 'The Concept of Lila: Understanding God\'s activities as divine play or sport.',
'teaching-4': 'The Importance of Satsang: The value of associating with devotees and spiritual practitioners.',
'teaching-5': 'The Transient Nature of Material Existence: Encouraging detachment from worldly pursuits.',
'famous-verses': 'Famous Verses',
'verse-1-title': 'First Verse of Srimad Bhagavatam (1.1.1)',
'verse-1-translation': '"I meditate upon Him, the transcendent reality, the source of all that exists, who is self-sufficient and fully cognizant of everything directly and indirectly. It is He who imparted Vedic knowledge into the heart of Brahma, the first created being. Even great sages and demigods are bewildered in their attempts to understand Him, for He is beyond the material nature. As the ethereal element provides space for the interaction of material objects, He is the ultimate shelter of all gross and subtle cosmic manifestations. Material nature appears real because of Him, yet He is always free from material contamination. I meditate upon Him, the eternal Supreme Truth."',
'verse-1-explanation': 'This verse, known as the "seed verse" of Srimad Bhagavatam, encapsulates the essence of the entire text. It describes the nature of the Absolute Truth as the source of all creation, beyond material nature, and the ultimate object of meditation and devotion.'
},
'hi': {
'languageToggle': 'Read in English',
'back': '← धर्मग्रंथों पर वापस जाएं',
'title': 'श्रीमद् भागवतम्',
'introduction': 'परिचय',
'intro-text': 'श्रीमद् भागवतम्, जिसे भागवत पुराण के नाम से भी जाना जाता है, हिंदू धर्म के अठारह महापुराणों में से एक है। यह वैष्णव धर्म में एक पूजनीय ग्रंथ है, विशेष रूप से भगवान विष्णु और उनके अवतारों, जिसमें कृष्ण भी शामिल हैं, के प्रति भक्ति (समर्पण) पर इसके ध्यान के लिए।',
'historical-context': 'ऐतिहासिक और सांस्कृतिक संदर्भ',
'historical-text': 'परंपरागत रूप से महर्षि व्यास को इसका रचयिता माना जाता है, और माना जाता है कि भागवतम् की रचना लगभग 3000 ईसा पूर्व हुई थी। इसमें 12 स्कंध (पुस्तकें) हैं जिनमें 18,000 श्लोक हैं। यह ग्रंथ कृष्ण और विष्णु के विभिन्न अवतारों का एक कथात्मक इतिहास है, जिसमें दार्शनिक और आध्यात्मिक तत्व भी गुंथे हुए हैं।',
'key-teachings': 'प्रमुख शिक्षाएँ',
'teachings-text': 'भागवतम् भगवान के प्रति भक्तिपूर्ण सेवा और भौतिक जगत से विरक्ति के विकास पर जोर देता है। यह एकेश्वरवाद का दर्शन प्रस्तुत करता है जहाँ कृष्ण को भगवान का सर्वोच्च रूप माना जाता है।',
'stories-characters': 'उल्लेखनीय कथाएँ और पात्र',
'story-1': 'कृष्ण का जन्म: कृष्ण का चमत्कारिक आविर्भाव और उनकी बाल लीलाएँ।',
'story-2': 'गोवर्धन पर्वत का उठाना: अपने भक्तों की रक्षा के लिए कृष्ण द्वारा एक पहाड़ को उठाने का पराक्रम।',
'story-3': 'रास लीला: गोपियों के साथ कृष्ण का दिव्य नृत्य, जो आत्मा की भगवान के लिए लालसा का प्रतीक है।',
'story-4': 'प्रह्लाद और नृसिंह: एक युवा भक्त और विष्णु के आधे मनुष्य, आधे सिंह अवतार की कहानी।',
'story-5': 'समुद्र मंथन: देवताओं, असुरों और दिव्य वस्तुओं तथा प्राणियों के उद्भव से जुड़ी एक सृष्टि मिथक।',
'important-teachings': 'महत्वपूर्ण शिक्षाएँ',
'teaching-1': 'भक्ति योग: मुक्ति के सर्वोच्च साधन के रूप में भगवान के प्रति प्रेमपूर्ण भक्ति का मार्ग।',
'teaching-2': 'परम सत्य का स्वरूप: दिव्य के व्यक्तिगत और निर्गुण पहलुओं का वर्णन।',
'teaching-3': 'लीला की अवधारणा: भगवान की गतिविधियों को दिव्य खेल या क्रीड़ा के रूप में समझना।',
'teaching-4': 'सत्संग का महत्व: भक्तों और आध्यात्मिक साधकों के साथ संगति का मूल्य।',
'teaching-5': 'भौतिक अस्तित्व की क्षणभंगुरता: सांसारिक प्रयासों से विरक्ति को प्रोत्साहित करना।',
'famous-verses': 'प्रसिद्ध श्लोक',
'verse-1-title': 'श्रीमद् भागवतम् का पहला श्लोक (1.1.1)',
'verse-1-translation': '"मैं उस परम सत्य का ध्यान करता हूँ, जो सभी अस्तित्व का स्रोत है, जो स्वयं में पूर्ण है और प्रत्यक्ष और परोक्ष रूप से सब कुछ जानता है। वही है जिसने ब्रह्मा, पहले सृजित प्राणी, के हृदय में वैदिक ज्ञान प्रदान किया। महान ऋषि और देवता भी उसे समझने के प्रयास में भ्रमित हो जाते हैं, क्योंकि वह प्राकृतिक जगत से परे है। जैसे आकाश तत्व भौतिक वस्तुओं के अंतःक्रिया के लिए स्थान प्रदान करता है, वैसे ही वह सभी स्थूल और सूक्ष्म ब्रह्मांडीय अभिव्यक्तियों का परम आश्रय है। प्रकृति उसके कारण ही वास्तविक प्रतीत होती है, फिर भी वह सदैव भौतिक प्रदूषण से मुक्त रहता है। मैं उस शाश्वत परम सत्य का ध्यान करता हूँ।"',
'verse-1-explanation': 'यह श्लोक, जिसे श्रीमद् भागवतम् का "बीज श्लोक" कहा जाता है, पूरे ग्रंथ के सार को समेटे हुए है। यह परम सत्य के स्वरूप का वर्णन करता है, जो सृष्टि का स्रोत है, प्रकृति से परे है, और ध्यान तथा भक्ति का परम लक्ष्य है।'
}
};
let currentLanguage = 'en';
function toggleLanguage() {
currentLanguage = currentLanguage === 'en' ? 'hi' : 'en';
updateContent();
updateToggleButton();
}
function updateContent() {
const elements = document.querySelectorAll('[data-translate]');
elements.forEach(element => {
const key = element.getAttribute('data-translate');
if (translations[currentLanguage][key]) {
element.innerHTML = translations[currentLanguage][key];
}
});
}
function updateToggleButton() {
const button = document.getElementById('languageToggle');
button.textContent = translations[currentLanguage]['languageToggle'];
}
// Call this function when the page loads to set the initial button text
updateToggleButton();
</script>
<script src="script.js"></script>
</body>
</html>