CommanderLazarus commited on
Commit
37bcab5
·
verified ·
1 Parent(s): 41dcef6

Tell me about the rat temple in India. Tell me about holy rats. Give me their rat types. Also include information about the Monkey King, while detailing monkey temple practices in India. It is about Hanuman and the ratties.

Browse files
components/image-card.js ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ class CustomImageCard extends HTMLElement {
2
+ connectedCallback() {
3
+ const image = this.getAttribute('image') || 'http://static.photos/travel/640x360/1';
4
+ const title = this.getAttribute('title') || 'Image Title';
5
+ const description = this.getAttribute('description') || 'Description not available';
6
+
7
+ this.attachShadow({ mode: 'open' });
8
+ this.shadowRoot.innerHTML = `
9
+ <style>
10
+ .image-card {
11
+ transition: all 0.3s ease;
12
+ }
13
+ .image-card:hover {
14
+ transform: translateY(-5px);
15
+ box-shadow: 0 10px 25px -5px rgba(245, 158, 11, 0.3);
16
+ }
17
+ .image-container {
18
+ height: 200px;
19
+ }
20
+ </style>
21
+ <div class="image-card bg-gray-800 rounded-xl overflow-hidden border border-gray-700 h-full flex flex-col">
22
+ <div class="image-container bg-cover bg-center" style="background-image: url('${image}')"></div>
23
+ <div class="p-4 flex-grow">
24
+ <h3 class="text-lg font-bold mb-2">${title}</h3>
25
+ <p class="text-gray-400 text-sm">${description}</p>
26
+ </div>
27
+ </div>
28
+ `;
29
+ }
30
+ }
31
+
32
+ customElements.define('custom-image-card', CustomImageCard);
components/navbar.js CHANGED
@@ -35,9 +35,9 @@ class CustomNavbar extends HTMLElement {
35
  <div class="hidden md:flex items-center space-x-8">
36
  <a href="#" class="nav-link">NHI Research</a>
37
  <a href="#" class="nav-link">Declassified Docs</a>
38
- <a href="#" class="nav-link">Sightings Map</a>
39
  <a href="#" class="nav-link">Whistleblowers</a>
40
- <button id="darkModeToggle" class="p-2 rounded-full hover:bg-gray-700">
41
  <i data-feather="moon"></i>
42
  </button>
43
  </div>
@@ -52,9 +52,9 @@ class CustomNavbar extends HTMLElement {
52
  <div class="flex flex-col space-y-4">
53
  <a href="#" class="nav-link">NHI Research</a>
54
  <a href="#" class="nav-link">Declassified Docs</a>
55
- <a href="#" class="nav-link">Sightings Map</a>
56
  <a href="#" class="nav-link">Whistleblowers</a>
57
- <button id="darkModeToggleMobile" class="flex items-center space-x-2 p-2 rounded-lg hover:bg-gray-700 w-full">
58
  <i data-feather="moon"></i>
59
  <span>Toggle Dark Mode</span>
60
  </button>
 
35
  <div class="hidden md:flex items-center space-x-8">
36
  <a href="#" class="nav-link">NHI Research</a>
37
  <a href="#" class="nav-link">Declassified Docs</a>
38
+ <a href="sacred-animals.html" class="nav-link">Sacred Animals</a>
39
  <a href="#" class="nav-link">Whistleblowers</a>
40
+ <button id="darkModeToggle" class="p-2 rounded-full hover:bg-gray-700">
41
  <i data-feather="moon"></i>
42
  </button>
43
  </div>
 
52
  <div class="flex flex-col space-y-4">
53
  <a href="#" class="nav-link">NHI Research</a>
54
  <a href="#" class="nav-link">Declassified Docs</a>
55
+ <a href="sacred-animals.html" class="nav-link">Sacred Animals</a>
56
  <a href="#" class="nav-link">Whistleblowers</a>
57
+ <button id="darkModeToggleMobile" class="flex items-center space-x-2 p-2 rounded-lg hover:bg-gray-700 w-full">
58
  <i data-feather="moon"></i>
59
  <span>Toggle Dark Mode</span>
60
  </button>
index.html CHANGED
@@ -11,6 +11,7 @@
11
  <script src="components/navbar.js"></script>
12
  <script src="components/footer.js"></script>
13
  <script src="components/news-card.js"></script>
 
14
  </head>
15
  <body class="bg-gray-900 text-gray-100 min-h-screen">
16
  <custom-navbar></custom-navbar>
 
11
  <script src="components/navbar.js"></script>
12
  <script src="components/footer.js"></script>
13
  <script src="components/news-card.js"></script>
14
+ <script src="components/image-card.js"></script>
15
  </head>
16
  <body class="bg-gray-900 text-gray-100 min-h-screen">
17
  <custom-navbar></custom-navbar>
sacred-animals.html ADDED
@@ -0,0 +1,153 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en" class="dark">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Sacred Animals of India | Karni Mata & Hanuman Temples</title>
7
+ <link rel="stylesheet" href="style.css">
8
+ <script src="https://cdn.tailwindcss.com"></script>
9
+ <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
10
+ <script src="components/navbar.js"></script>
11
+ <script src="components/footer.js"></script>
12
+ <script src="components/image-card.js"></script>
13
+ </head>
14
+ <body class="bg-gray-900 text-gray-100 min-h-screen">
15
+ <custom-navbar></custom-navbar>
16
+
17
+ <main class="container mx-auto px-4 py-8">
18
+ <!-- Hero Section -->
19
+ <section class="relative h-96 rounded-xl overflow-hidden mb-12 bg-[url('http://static.photos/travel/1200x630/42')] bg-cover bg-center">
20
+ <div class="absolute inset-0 bg-gradient-to-r from-amber-900/80 to-yellow-900/80"></div>
21
+ <div class="absolute inset-0 flex flex-col justify-center items-center text-center px-4">
22
+ <h1 class="text-4xl md:text-6xl font-bold mb-4">Sacred Animals of India</h1>
23
+ <p class="text-xl md:text-2xl max-w-3xl mb-8">Where rats are worshipped and monkeys revered</p>
24
+ </div>
25
+ </section>
26
+
27
+ <!-- Karni Mata Rat Temple -->
28
+ <section class="mb-16">
29
+ <h2 class="text-3xl font-bold mb-8 text-center">Karni Mata Temple - Home of 25,000 Sacred Rats</h2>
30
+ <div class="grid grid-cols-1 md:grid-cols-2 gap-8 items-center">
31
+ <div>
32
+ <p class="mb-4">Located in Deshnoke, Rajasthan, the Karni Mata Temple is one of India's most unusual places of worship, home to approximately 25,000 black rats that are revered as holy beings.</p>
33
+ <ul class="list-disc pl-5 mb-4 space-y-2">
34
+ <li>Built in the early 20th century in Mughal style with marble carvings</li>
35
+ <li>Rats are believed to be reincarnated descendants of Karni Mata</li>
36
+ <li>Devotees consider eating food nibbled by rats as highly auspicious</li>
37
+ <li>Spotting a rare white rat brings exceptional good fortune</li>
38
+ </ul>
39
+ </div>
40
+ <div class="bg-gray-800 rounded-xl p-4 border border-gray-700">
41
+ <h3 class="text-xl font-bold mb-4 text-center">Types of Sacred Rats</h3>
42
+ <div class="grid grid-cols-2 gap-4">
43
+ <div class="bg-gray-700/50 p-3 rounded-lg">
44
+ <h4 class="font-medium text-amber-400 mb-1">Black Rats</h4>
45
+ <p class="text-sm">Most common, considered regular devotees</p>
46
+ </div>
47
+ <div class="bg-gray-700/50 p-3 rounded-lg">
48
+ <h4 class="font-medium text-yellow-200 mb-1">White Rats</h4>
49
+ <p class="text-sm">Extremely rare, believed to be Karni Mata or her sons</p>
50
+ </div>
51
+ <div class="bg-gray-700/50 p-3 rounded-lg">
52
+ <h4 class="font-medium text-amber-300 mb-1">Golden Rats</h4>
53
+ <p class="text-sm">Occasional sightings, signify divine blessings</p>
54
+ </div>
55
+ <div class="bg-gray-700/50 p-3 rounded-lg">
56
+ <h4 class="font-medium text-gray-300 mb-1">Temple Guardians</h4>
57
+ <p class="text-sm">Older rats that protect the temple grounds</p>
58
+ </div>
59
+ </div>
60
+ </div>
61
+ </div>
62
+ </section>
63
+
64
+ <!-- Temple Practices -->
65
+ <section class="mb-16 bg-gray-800 rounded-xl p-8 border border-gray-700">
66
+ <h2 class="text-3xl font-bold mb-6 text-center">Temple Rituals & Practices</h2>
67
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-6">
68
+ <div class="bg-gray-700/30 p-6 rounded-lg">
69
+ <h3 class="text-xl font-bold mb-3 flex items-center">
70
+ <i data-feather="moon" class="mr-2 text-amber-400"></i> Night Feeding
71
+ </h3>
72
+ <p>Priests prepare massive quantities of grain, milk and sweets each evening for the rats' nocturnal feasts.</p>
73
+ </div>
74
+ <div class="bg-gray-700/30 p-6 rounded-lg">
75
+ <h3 class="text-xl font-bold mb-3 flex items-center">
76
+ <i data-feather="heart" class="mr-2 text-amber-400"></i> Rat Blessings
77
+ </h3>
78
+ <p>Devotees sit quietly allowing rats to crawl over them, considered a sacred blessing from the deities.</p>
79
+ </div>
80
+ <div class="bg-gray-700/30 p-6 rounded-lg">
81
+ <h3 class="text-xl font-bold mb-3 flex items-center">
82
+ <i data-feather="shield" class="mr-2 text-amber-400"></i> Protection
83
+ </h3>
84
+ <p>Killing a rat in the temple requires replacing it with a gold or silver rat statue as penance.</p>
85
+ </div>
86
+ </div>
87
+ </section>
88
+
89
+ <!-- Hanuman Monkey Temples -->
90
+ <section class="mb-16">
91
+ <h2 class="text-3xl font-bold mb-8 text-center">Hanuman & Monkey Temples</h2>
92
+ <div class="grid grid-cols-1 md:grid-cols-2 gap-8">
93
+ <div>
94
+ <h3 class="text-2xl font-bold mb-4">The Monkey King</h3>
95
+ <p class="mb-4">Hanuman, the monkey god, is one of Hinduism's most beloved deities, known for his strength, devotion and role in the Ramayana epic.</p>
96
+ <ul class="list-disc pl-5 mb-4 space-y-2">
97
+ <li>Son of the wind god Vayu, possesses immense strength and magical powers</li>
98
+ <li>Played crucial role in rescuing Sita from demon king Ravana</li>
99
+ <li>Symbol of loyalty, courage and selfless service</li>
100
+ <li>Worshipped on Tuesdays and Saturdays with special prayers</li>
101
+ </ul>
102
+ </div>
103
+ <div class="bg-gray-800 rounded-xl p-6 border border-gray-700">
104
+ <h3 class="text-xl font-bold mb-4">Famous Monkey Temples</h3>
105
+ <div class="space-y-4">
106
+ <div>
107
+ <h4 class="font-bold text-amber-400">Galta Ji, Jaipur</h4>
108
+ <p class="text-sm">Home to hundreds of monkeys who bathe in the temple's sacred pools.</p>
109
+ </div>
110
+ <div>
111
+ <h4 class="font-bold text-amber-400">Vrindavan Hanuman Temple</h4>
112
+ <p class="text-sm">Features a 40-foot tall statue of Hanuman where monkeys freely roam.</p>
113
+ </div>
114
+ <div>
115
+ <h4 class="font-bold text-amber-400">Jakhu Temple, Shimla</h4>
116
+ <p class="text-sm">Hilltop temple with aggressive monkeys who steal food from visitors.</p>
117
+ </div>
118
+ </div>
119
+ </div>
120
+ </div>
121
+ </section>
122
+
123
+ <!-- Image Gallery -->
124
+ <section class="mb-16">
125
+ <h2 class="text-3xl font-bold mb-8 text-center">Sacred Animal Gallery</h2>
126
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
127
+ <custom-image-card
128
+ image="http://static.photos/temple/640x360/1"
129
+ title="Karni Mata Rat Temple"
130
+ description="Devotees feeding the sacred rats at Deshnoke">
131
+ </custom-image-card>
132
+ <custom-image-card
133
+ image="http://static.photos/monkeys/640x360/2"
134
+ title="Hanuman Statue"
135
+ description="Monkeys gathering around a Hanuman idol in Vrindavan">
136
+ </custom-image-card>
137
+ <custom-image-card
138
+ image="http://static.photos/ritual/640x360/3"
139
+ title="Rat Blessing Ceremony"
140
+ description="A priest performing rituals with the temple rats">
141
+ </custom-image-card>
142
+ </div>
143
+ </section>
144
+ </main>
145
+
146
+ <custom-footer></custom-footer>
147
+
148
+ <script>
149
+ feather.replace();
150
+ </script>
151
+ <script src="script.js"></script>
152
+ </body>
153
+ </html>