-
Notifications
You must be signed in to change notification settings - Fork 0
/
blog.html
107 lines (102 loc) · 3.33 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="icon" type="image/png" href="/img/favicon.png" />
<title>Nirmal Kumar R - blog</title>
<link rel="stylesheet" href="/style.css" />
</head>
<body>
<a href="/" class="header">
<div class="logo">
<img src="/img/nklogo.png" width="90px" />
</div>
<p><img src="/img/nirmal-banner.png" height="70px"></p>
</a>
<nav>
<a href="/blog.html">Blog</a>
<a href="/poems.html">Poems</a>
<a href="/devlog.html">Devlog</a>
<a href="mailto:nirmal@posteo.net">Contact</a>
</nav>
<main>
<ul>
<li>
<a href="blog/when-my-mental-health-goes-down.html">What I do when my mental health goes down</a>
<span class="date">[2024-10-22]</span>
</li>
<li>
<a href="blog/a-bite-of-unconscious-way.html"
>A bite of unconscious way</a
>
<span class="date">[2024-08-10]</span>
</li>
<li>
<a href="blog/nothing-can-beat-this.html">Nothing can beat this</a>
<span class="date">[2024-03-11]</span>
</li>
<li>
<a href="blog/50-years.html">50 Years</a>
<span class="date">[2023-07-20]</span>
</li>
<li>
<a href="blog/creativity.html">Creativity</a>
<span class="date">[2023-04-20]</span>
</li>
<li>
<a href="blog/mid-of-the-crisis.html">Mid of the crisis</a>
<span class="date">[2023-02-07]</span>
</li>
<li>
<a href="blog/my-admiration-and-respect-for-bruce-lee.html"
>My admiration and respect for Bruce Lee</a
>
<span class="date">[2022-12-17]</span>
</li>
<li>
<a href="blog/in-praise-of-silent-voice.html"
>In praise of silent voice</a
>
<span class="date">[2022-10-20]</span>
</li>
<li>
<a href="blog/time-goes-by-and-does-life-grow-in-you.html"
>Time goes by and does life grow in you?</a
>
<span class="date">[2022-07-09]</span>
</li>
<li>
<a href="blog/occurrence-and-non-occurrence.html"
>Occurrence and non-occurrence</a
>
<span class="date">[2022-05-04]</span>
</li>
<li>
<a href="blog/is-it-really-smart-work.html"
>Is it really smart work?</a
>
<span class="date">[2022-05-02]</span>
</li>
<li>
<a href="blog/hello-from-mysticmode.html">Hello from mysticmode</a>
<span class="date">[2021-11-28]</span>
</li>
<li>
<a href="blog/interview-with-annamalai-swami-by-jim-lemkin.html"
>Interview with Annamalai Swami by Jim Lemkin</a
>
<span class="date">[2020-11-10]</span>
</li>
</ul>
</main>
<footer>
<hr />
© Nirmal Kumar R. All original text, is licensed under a
<a href="http://creativecommons.org/licenses/by/4.0/"
>Creative Commons Attribution 4.0 International License</a
>. Source code of this website can be found
<a href="https://git.sr.ht/~mysticmode/nirm.al">here</a>.
</footer>
</body>
</html>