-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblog.html
413 lines (333 loc) · 20.1 KB
/
blog.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
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css2?family=Nunito&display=swap" rel="stylesheet">
<link href="output.css" rel="stylesheet">
<title>Nivethan</title>
<link rel="icon" type="image/x-icon" href="public/img/Nivethan-icon.png" />
</head>
<body class="bg-stone-50 font-sans leading-normal tracking-normal font-serif">
<script src="https://cdn.jsdelivr.net/gh/alpinejs/[email protected]/dist/alpine.min.js" defer></script>
<div class="w-full text-gray-300 bg-white drop-shadow-md font-family-class">
<div x-data="{ open: false }"
class="p-2 flex flex-col max-w-screen-xl mx-auto md:items-center md:justify-between md:flex-row md:px-6 lg:px-8">
<div class="flex flex-row items-center justify-between">
<a href="index.html"><img
src="public/img/Nevthan -logo.webp"
alt="logo" class="h-full w-72"></a>
<button aria-label="hamberger-btn" class="md:hidden rounded-lg focus:outline-none focus:shadow-outline" @click="open = !open">
<svg fill="currentColor" viewBox="0 0 20 20" class="w-6 h-6 text-sky-700">
<path x-show="!open" fill-rule="evenodd"
d="M3 5a1 1 0 011-1h12a1 1 0 110 2H4a1 1 0 01-1-1zM3 10a1 1 0 011-1h12a1 1 0 110 2H4a1 1 0 01-1-1zM9 15a1 1 0 011-1h6a1 1 0 110 2h-6a1 1 0 01-1-1z"
clip-rule="evenodd"></path>
<path x-show="open" fill-rule="evenodd"
d="M4.293 4.293a1 1 0 011.414 0L10 8.586l4.293-4.293a1 1 0 111.414 1.414L11.414 10l4.293 4.293a1 1 0 01-1.414 1.414L10 11.414l-4.293 4.293a1 1 0 01-1.414-1.414L8.586 10 4.293 5.707a1 1 0 010-1.414z"
clip-rule="evenodd"></path>
</svg>
</button>
</div>
<nav :class="{'flex': open, 'hidden': !open}"
class="flex-col flex-grow pb-4 md:pb-0 hidden md:flex md:justify-end md:flex-row">
<a class="px-4 py-2 mt-2 text-base font-semibold text-black rounded-lg md:mt-0 hover:text-sky-600 hover:bg-gray-50 focus:bg-gray-200 focus:outline-none focus:shadow-outline"
href="index.html">Home</a>
<div @click.away="open = false" class="relative" x-data="{ open: false }">
<button @click="open = !open"
class="text-black flex flex-row items-center w-full px-4 py-2 mt-2 text-base font-semibold text-left bg-transparent rounded-lg hover:bg-gray-50 hover:text-sky-600 md:w-auto md:inline md:mt-0 md:ml-4 hover:text-gray-900 focus:text-gray-900 hover:bg-gray-200 focus:bg-gray-200 focus:outline-none focus:shadow-outline">
<span>About</span>
<svg fill="currentColor" viewBox="0 0 20 20" :class="{'rotate-180': open, 'rotate-0': !open}"
class="inline w-4 h-4 mt-1 ml-1 transition-transform duration-200 transform md:-mt-1">
<path fill-rule="evenodd"
d="M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z"
clip-rule="evenodd"></path>
</svg>
</button>
<div x-show="open" x-transition:enter="transition ease-out duration-100"
x-transition:enter-start="transform opacity-0 scale-95"
x-transition:enter-end="transform opacity-100 scale-100"
x-transition:leave="transition ease-in duration-75"
x-transition:leave-start="transform opacity-100 scale-100"
x-transition:leave-end="transform opacity-0 scale-95"
class="absolute right-0 w-full mt-2 origin-top-right rounded-md shadow-lg md:w-48">
<div class="px-2 py-2 bg-white rounded-md shadow text-black">
<a class="block px-4 py-2 mt-2 text-base font-semibold bg-transparent rounded-lg hover:text-sky-600 md:mt-0 hover:text-gray-900 focus:text-gray-900 hover:bg-gray-200 focus:bg-gray-200 focus:outline-none focus:shadow-outline"
href="overview.html">Overview</a>
<a class="block px-4 py-2 mt-2 text-base font-semibold bg-transparent rounded-lg hover:text-sky-600 md:mt-0 hover:text-gray-900 focus:text-gray-900 hover:bg-gray-200 focus:bg-gray-200 focus:outline-none focus:shadow-outline"
href="our-partners.html">Our Partners</a>
<a class="block px-4 py-2 mt-2 text-base font-semibold bg-transparent rounded-lg hover:text-sky-600 md:mt-0 hover:text-gray-900 focus:text-gray-900 hover:bg-gray-200 focus:bg-gray-200 focus:outline-none focus:shadow-outline"
href="legal-info-financials.html">Legal Information & financial</a>
</div>
</div>
</div>
<!-- ***** -->
<div @click.away="open = false" class="relative" x-data="{ open: false }">
<button @click="open = !open"
class="text-black flex flex-row items-center w-full px-4 py-2 mt-2 text-base font-semibold text-left bg-transparent rounded-lg hover:text-sky-600 hover:bg-gray-50 md:w-auto md:inline md:mt-0 md:ml-4 hover:text-gray-900 focus:text-gray-900 hover:bg-gray-200 focus:bg-gray-200 focus:outline-none focus:shadow-outline">
<span>Programs</span>
<svg fill="currentColor" viewBox="0 0 20 20" :class="{'rotate-180': open, 'rotate-0': !open}"
class="inline w-4 h-4 mt-1 ml-1 transition-transform duration-200 transform md:-mt-1">
<path fill-rule="evenodd"
d="M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z"
clip-rule="evenodd"></path>
</svg>
</button>
<div x-show="open" x-transition:enter="transition ease-out duration-100"
x-transition:enter-start="transform opacity-0 scale-95"
x-transition:enter-end="transform opacity-100 scale-100"
x-transition:leave="transition ease-in duration-75"
x-transition:leave-start="transform opacity-100 scale-100"
x-transition:leave-end="transform opacity-0 scale-95"
class="absolute right-0 w-full mt-2 origin-top-right rounded-md shadow-lg md:w-48">
<div class="px-2 py-2 bg-white rounded-md shadow text-black">
<a class="block px-4 py-2 mt-2 text-base font-semibold bg-transparent rounded-lg hover:text-sky-600 md:mt-0 hover:text-gray-900 focus:text-gray-900 hover:bg-gray-200 focus:bg-gray-200 focus:outline-none focus:shadow-outline"
href="nurture-merit.html">Nurture Merit</a>
<a class="block px-4 py-2 mt-2 text-base font-semibold bg-transparent rounded-lg hover:text-sky-600 md:mt-0 hover:text-gray-900 focus:text-gray-900 hover:bg-gray-200 focus:bg-gray-200 focus:outline-none focus:shadow-outline"
href="mission-thalassemia.html">Mission Thalassemia</a>
<a class="block px-4 py-2 mt-2 text-base font-semibold bg-transparent rounded-lg hover:text-sky-600 md:mt-0 hover:text-gray-900 focus:text-gray-900 hover:bg-gray-200 focus:bg-gray-200 focus:outline-none focus:shadow-outline"
href="economic-development-initiatives.html">Economic Development Initiatives</a>
</div>
</div>
</div>
<!-- **** -->
<a class="text-black px-4 py-2 mt-2 text-base font-semibold bg-transparent rounded-lg hover:text-sky-600 hover:bg-gray-50 md:mt-0 md:ml-4 hover:text-gray-900 focus:text-gray-900 hover:bg-gray-200 focus:bg-gray-200 focus:outline-none focus:shadow-outline"
href="blog.html">Blog</a>
<a class="text-black px-4 py-2 mt-2 text-base font-semibold bg-transparent rounded-lg hover:text-sky-600 hover:bg-gray-50 md:mt-0 md:ml-4 hover:text-gray-900 focus:text-gray-900 hover:bg-gray-200 focus:bg-gray-200 focus:outline-none focus:shadow-outline"
href="donate.html">Donate</a>
<a class="text-black px-4 py-2 mt-2 text-base font-semibold bg-transparent rounded-lg hover:text-sky-600 hover:bg-gray-50 md:mt-0 md:ml-4 hover:text-gray-900 focus:text-gray-900 hover:bg-gray-200 focus:bg-gray-200 focus:outline-none focus:shadow-outline"
href="contact.html">Contact Us</a>
</nav>
</div>
</div>
<!-- ******* -->
<div class="bg-white py-16 sm:py-8 font-family-class">
<div class="mx-auto max-w-7xl px-6 lg:px-8">
<div class="mx-auto max-w-4xl">
<h2 class="lg:text-3xl text-lg font-bold tracking-tight text-gray-900 sm:text-4xl">From the blog</h2>
<article class="flex max-w-6xl flex-col items-start justify-between font-family-class pt-6">
<div class="group relative">
<h3 class="mt-3 lg:text-3xl text-lg heading-text-color hover:text-orange-600 hover:underline">
<a href="post/nurture-merit-scholarship-distribution-in-madurai-and-sempatti.html"
class="heading-text-color hover:text-orange-600">
<span class="absolute inset-0"></span>
Nurture Merit Scholarship Distribution in Madurai and Sempatti
</a>
</h3>
<p class="mt-5 line-clamp-3 text-base leading-6 text-gray-600">“That’s the reason why I took
History group. I want to become an IAS Officer!”Thus said Meena (15 years), one of the 42
Nivethan students who got awarded the Nurture….</p>
<p class="mt-1 line-clamp-3 text-base leading-6 text-gray-600"><a
href="post/nurture-merit-scholarship-distribution-in-madurai-and-sempatti.html"
class="heading-text-color underline hover:text-orange-600">
<span class="absolute inset-0"></span>
CONTINUE READING
</a></p>
</div>
</article>
<article class="flex max-w-6xl flex-col items-start justify-between font-family-class pt-6">
<div class="group relative">
<h3 class="mt-3 lg:text-3xl text-lg heading-text-color hover:text-orange-600 hover:underline">
<a href="post/appeal-for-educational-assistance-to-needy-students-nivethan-trust-2019-2020.html"
class="heading-text-color hover:text-orange-600">
<span class="absolute inset-0"></span>
Appeal for educational assistance to needy students- Nivethan Trust (2019-2020)
</a>
</h3>
<p class="mt-5 line-clamp-3 text-base leading-6 text-gray-600">Dear friends,Greetings from
Nivethan Trust!I am herewith enclosing the list of 28 students who have applied to Nivethan
Trust for educational assistance to pursue higher education in Madurai and Dindigul under
Nurture….</p>
<p class="mt-1 line-clamp-3 text-base leading-6 text-gray-600"><a
href="post/appeal-for-educational-assistance-to-needy-students-nivethan-trust-2019-2020.html"
class="heading-text-color underline hover:text-orange-600">
<span class="absolute inset-0"></span>
CONTINUE READING
</a></p>
</div>
</article>
<article class="flex max-w-6xl flex-col items-start justify-between font-family-class pt-6">
<div class="group relative">
<h3 class="mt-3 lg:text-3xl text-lg heading-text-color hover:text-orange-600 hover:underline">
<a href="post/covid-19.html" class="heading-text-color hover:text-orange-600">
<span class="absolute inset-0"></span>
Covid-19
</a>
</h3>
<p class="mt-5 line-clamp-3 text-base leading-6 text-gray-600">Support for Farming Families
affected by Covid-19 in Bhadrak (Odisha)Support for Farming Families affected by Covid-19 in
Bhadrak (Odisha) Nivethan works with 1000+ small & marginal farmers in 25+ villages…</p>
<p class="mt-1 line-clamp-3 text-base leading-6 text-gray-600"><a href="post/covid-19.html"
class="heading-text-color underline hover:text-orange-600">
<span class="absolute inset-0"></span>
CONTINUE READING
</a></p>
</div>
</article>
<article class="flex max-w-6xl flex-col items-start justify-between font-family-class pt-6">
<div class="group relative">
<h3 class="mt-3 lg:text-3xl text-lg heading-text-color hover:text-orange-600 hover:underline">
<a href="post/support-devikas-treatment.html"
class="heading-text-color hover:text-orange-600" v>
<span class="absolute inset-0"></span>
Support DEVIKA’s Treatment
</a>
</h3>
<p class="mt-5 line-clamp-3 text-base leading-6 text-gray-600">Dear Friends, Greetings from
Nivethan! Hope you and your family are keeping healthy and safe during the pandemic.
Nivethan Trust has an “Appeal to urgently support for the treatment of a…
</p>
<p class="mt-1 line-clamp-3 text-base leading-6 text-gray-600"><a
href="post/support-devikas-treatment.html"
class="heading-text-color underline hover:text-orange-600">
<span class="absolute inset-0"></span>
CONTINUE READING
</a></p>
</div>
</article>
<!-- ****** 1111 **** -->
<article class="flex max-w-6xl flex-col items-start justify-between font-family-class pt-6">
<div class="group relative">
<h3 class="mt-3 lg:text-3xl text-lg heading-text-color hover:text-orange-600 hover:underline">
<a href="post/gift-a-life-to-1-3-years-old-lakshitha-suffering-from-thalassemia.html"
class="heading-text-color hover:text-orange-600" v>
<span class="absolute inset-0"></span>
Gift a Life to 1.3 years old Lakshitha, suffering from Thalassemia
</a>
</h3>
<p class="mt-5 line-clamp-3 text-base leading-6 text-gray-600">This is an appeal from Nivethan
Trust to help 1.3 year old Lakshitha, suffering from Thalassemia. The baby Lakshitha, living
in Madurai has been suffering from Thalassemia, a blood disorder disease…
</p>
<p class="mt-1 line-clamp-3 text-base leading-6 text-gray-600"><a
href="post/gift-a-life-to-1-3-years-old-lakshitha-suffering-from-thalassemia.html"
class="heading-text-color underline hover:text-orange-600">
<span class="absolute inset-0"></span>
CONTINUE READING
</a></p>
</div>
</article>
<!-- ****** 22222 **** -->
<article class="flex max-w-6xl flex-col items-start justify-between font-family-class pt-6">
<div class="group relative">
<h3 class="mt-3 lg:text-3xl text-lg heading-text-color hover:text-orange-600 hover:underline">
<a href="post/appeal-for-educational-assistance-to-needy-students-nivethan-trust-2018-2019.html"
class="heading-text-color hover:text-orange-600">
<span class="absolute inset-0"></span>
Appeal for educational assistance to needy students- Nivethan Trust (2018-2019)
</a>
</h3>
<p class="mt-5 line-clamp-3 text-base leading-6 text-gray-600">Dear donors, well-wishers and
volunteers,Greetings from Nivethan Trust!Hope all is well..I am herewith enclosing the list
of 42 shortlisted students who have applied to Nivethan Trust for educational assistance to…
</p>
<p class="mt-1 line-clamp-3 text-base leading-6 text-gray-600"><a
href="post/appeal-for-educational-assistance-to-needy-students-nivethan-trust-2018-2019.html"
class="heading-text-color underline hover:text-orange-600">
<span class="absolute inset-0"></span>
CONTINUE READING
</a></p>
</div>
</article>
<!-- ****** 3333 **** -->
<article class="flex max-w-6xl flex-col items-start justify-between font-family-class pt-6">
<div class="group relative">
<h3 class="mt-3 lg:text-3xl text-lg heading-text-color hover:text-orange-600 hover:underline">
<a href="post/a-new-year-begins-nivethans-nurture-merit-program-2019-20-starts.html"
class="heading-text-color hover:text-orange-600">
<span class="absolute inset-0"></span>
A New Year begins: Nivethan’s Nurture Merit Program 2019-20 starts!
</a>
</h3>
<p class="mt-5 line-clamp-3 text-base leading-6 text-gray-600">A New Year begins: Nivethan’s
Nurture Merit Program 2019-20 starts!“She takes tablets regularly,” said Vanishree (name
changed) talking about her younger sister, Jayashree (name changed). ‘Taking tablets’ means
Jayashree is…
</p>
<p class="mt-1 line-clamp-3 text-base leading-6 text-gray-600"><a
href="post/a-new-year-begins-nivethans-nurture-merit-program-2019-20-starts.html"
class="heading-text-color underline hover:text-orange-600">
<span class="absolute inset-0"></span>
CONTINUE READING
</a></p>
</div>
</article>
</div>
</div>
</div>
<!-- ******************* -->
<!-- footer -->
<footer class="bg-gray-100 p-4" aria-labelledby="footer-heading">
<h2 id="footer-heading" class="sr-only">Footer</h2>
<div class="mx-auto max-w-7xl px-6 pb-4 sm:pt-24 lg:px-8 pt-2 lg:pt-12">
<div class="">
<div class="flex flex-col lg:flex-row justify-center lg:gap-20">
<!-- 1111 -->
<div class="mt-2 xl:mt-0 max-w-xl">
<h3 class="text-lg font-semibold leading-6 text-color">Donate Now to Nivethan Trust</h3>
<p class="mt-2 text-baseleading-6 text-black font-family-class">Support various programs of
Nivethan by
donating. All your donations to Nivethan Trust are exempted under 80 (G) of Income Tax
Act. <a href="donate.html" class="text-orange-600 hover:text-sky-600 hover:underline">Donate
online.</a></p>
</div>
<!-- 22222 -->
<div class="mt-2 xl:mt-0">
<h3 class="text-lg font-semibold leading-6 text-color">Contact Us</h3>
<p class="mt-2 text-baseleading-6 text-black font-family-class"> Nivethan Trust</p>
<p class="mt-2 text-baseleading-6 text-black font-family-class">Madurai, Tamil Nadu, India</p>
<p class="mt-2 text-baseleading-6 text-black font-family-class"> +91-97881-66903</p>
<p class="mt-2 text-baseleading-6 text-black font-family-class"> [email protected] ;
</div>
</div>
</div>
<div
class="mt-16 border-t border-black/20 pt-8 sm:mt-20 md:flex md:items-center md:justify-between lg:mt-8">
<div class="flex space-x-6 md:order-2">
<a href="https://www.facebook.com/nivethanmadurai/ " class="text-gray-900 hover:text-sky-600">
<span class="sr-only">Facebook</span>
<svg class="h-6 w-6" fill="currentColor" viewBox="0 0 24 24" aria-hidden="true">
<path fill-rule="evenodd"
d="M22 12c0-5.523-4.477-10-10-10S2 6.477 2 12c0 4.991 3.657 9.128 8.438 9.878v-6.987h-2.54V12h2.54V9.797c0-2.506 1.492-3.89 3.777-3.89 1.094 0 2.238.195 2.238.195v2.46h-1.26c-1.243 0-1.63.771-1.63 1.562V12h2.773l-.443 2.89h-2.33v6.988C18.343 21.128 22 16.991 22 12z"
clip-rule="evenodd" />
</svg>
</a>
<a href="https://twitter.com/nivethantrust " class="text-gray-900 hover:text-sky-600">
<span class="sr-only">Twitter</span>
<svg class="h-6 w-6" fill="currentColor" viewBox="0 0 24 24" aria-hidden="true">
<path
d="M8.29 20.251c7.547 0 11.675-6.253 11.675-11.675 0-.178 0-.355-.012-.53A8.348 8.348 0 0022 5.92a8.19 8.19 0 01-2.357.646 4.118 4.118 0 001.804-2.27 8.224 8.224 0 01-2.605.996 4.107 4.107 0 00-6.993 3.743 11.65 11.65 0 01-8.457-4.287 4.106 4.106 0 001.27 5.477A4.072 4.072 0 012.8 9.713v.052a4.105 4.105 0 003.292 4.022 4.095 4.095 0 01-1.853.07 4.108 4.108 0 003.834 2.85A8.233 8.233 0 012 18.407a11.616 11.616 0 006.29 1.84" />
</svg>
</a>
<a href="https://www.youtube.com/user/NivethanTrust" class="text-gray-900 hover:text-sky-600">
<span class="sr-only">YouTube</span>
<svg class="h-6 w-6" fill="currentColor" viewBox="0 0 24 24" aria-hidden="true">
<path fill-rule="evenodd"
d="M19.812 5.418c.861.23 1.538.907 1.768 1.768C21.998 8.746 22 12 22 12s0 3.255-.418 4.814a2.504 2.504 0 0 1-1.768 1.768c-1.56.419-7.814.419-7.814.419s-6.255 0-7.814-.419a2.505 2.505 0 0 1-1.768-1.768C2 15.255 2 12 2 12s0-3.255.417-4.814a2.507 2.507 0 0 1 1.768-1.768C5.744 5 11.998 5 11.998 5s6.255 0 7.814.418ZM15.194 12 10 15V9l5.194 3Z"
clip-rule="evenodd" />
</svg>
</a>
</div>
<div>
<p class="mt-8 mb-2 text-base leading-5 text-black md:order-1 md:mt-0 font-family-class">©
Copyright
[Nivethan Trust]
- All rights reserved.</p>
<p class="mt-12 text-sm leading-5 md:order-1 md:mt-0 text-black font-family-class">
Built with ❤️ by
<a href="https://oasishq.org/" target="_blank"
class="li-text-color hover:text-orange-600 hover:underline">OASIS</a> partner
<a href="https://aikyamfellows.org/" target="_blank"
class="li-text-color hover:text-orange-600 hover:underline"> aikyam fellows </a>
using
<a href="https://github.com/t4glabs/nivethan"
class="li-text-color hover:text-orange-600 hover:underline">Github Pages</a>
</a>
</p>
</div>
</div>
</div>
</footer>
<script src="index.js"></script>
</body>
</html>