poems.html (2742B)
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" /> 6 <link rel="icon" type="image/png" href="/img/favicon.png" /> 7 <title>Nirmal Kumar R - blog</title> 8 <link rel="stylesheet" href="/style.css" /> 9 </head> 10 11 <body> 12 <a href="/" class="header"> 13 <div class="logo"> 14 <img src="/img/nklogo.png" width="90px" /> 15 </div> 16 <p><img src="/img/nirmal-banner.png" height="70px"></p> 17 </a> 18 19 <nav> 20 <a href="/blog.html">Blog</a> 21 <a href="/poems.html">Poems</a> 22 <a href="/devlog.html">Devlog</a> 23 <a href="mailto:nirmal@posteo.net">Contact</a> 24 </nav> 25 26 <main> 27 <ul> 28 <li> 29 <a href="poems/shades-of-status-quo.html">Shades of status quo</a> 30 <span class="date">[2024-12-20]</span> 31 <li> 32 <a href="poems/polar-bliss.html">Polar bliss</a> 33 <span class="date">[2023-04-09]</span> 34 </li> 35 <li> 36 <a href="poems/free-yourself.html">Free yourself</a> 37 <span class="date">[2023-01-26]</span> 38 </li> 39 <li> 40 <a href="poems/love-for-a-stranger.html">Love for a stranger</a> 41 <span class="date">[2022-12-10]</span> 42 </li> 43 <li> 44 <a href="poems/a-place-in-my-heart.html">A place in my heart</a> 45 <span class="date">[2022-11-26]</span> 46 </li> 47 <li> 48 <a href="poems/seeker.html">Seeker</a> 49 <span class="date">[2022-10-14]</span> 50 </li> 51 <li> 52 <a href="poems/path-and-love.html">Path and Love</a> 53 <span class="date">[2022-09-29]</span> 54 </li> 55 <li> 56 <a href="poems/my-life-is-not-shrinking.html" 57 >My life is not shrinking</a 58 > 59 <span class="date">[2022-05-22]</span> 60 </li> 61 <li> 62 <a href="poems/dont-just-get-going.html">Don't just get going</a> 63 <span class="date">[2022-01-05]</span> 64 </li> 65 <li> 66 <a href="poems/life-is-preciously-short.html" 67 >Life is preciously short</a 68 > 69 <span class="date">[2021-08-12]</span> 70 </li> 71 <li> 72 <a href="poems/solitude.html">Solitude</a> 73 <span class="date">[2014-09-09]</span> 74 </li> 75 </ul> 76 </main> 77 78 <footer> 79 <hr /> 80 © Nirmal Kumar R. All original text, is licensed under a 81 <a href="http://creativecommons.org/licenses/by/4.0/" 82 >Creative Commons Attribution 4.0 International License</a 83 >. Source code of this website can be found 84 <a href="https://git.sr.ht/~mysticmode/nirm.al">here</a>. 85 </footer> 86 </body> 87 </html>