diff --git a/layouts/partials/head.html b/layouts/partials/head.html
new file mode 100644
index 0000000..1fbe50e
--- /dev/null
+++ b/layouts/partials/head.html
@@ -0,0 +1,171 @@
+
+
+
+{{- if hugo.IsProduction | or (eq site.Params.env "production") | and (ne .Params.robotsNoIndex true) }}
+
+{{- else }}
+
+{{- end }}
+
+{{- /* Title */}}
+
{{ if .IsHome }}{{ else }}{{ if .Title }}{{ .Title }} | {{ end }}{{ end }}{{ site.Title }}
+
+{{- /* Meta */}}
+{{- if .IsHome }}
+{{ with site.Params.keywords -}}{{ end }}
+{{- else }}
+
+{{- end }}
+
+
+
+{{- if site.Params.analytics.google.SiteVerificationTag }}
+
+{{- end }}
+{{- if site.Params.analytics.yandex.SiteVerificationTag }}
+
+{{- end }}
+{{- if site.Params.analytics.bing.SiteVerificationTag }}
+
+{{- end }}
+{{- if site.Params.analytics.naver.SiteVerificationTag }}
+
+{{- end }}
+
+
+{{- /* Styles */}}
+
+{{- /* includes */}}
+{{- $includes := slice }}
+{{- $includes = $includes | append (" " | resources.FromString "assets/css/includes-blank.css")}}
+
+{{- if not (eq site.Params.assets.disableScrollBarStyle true) }}
+ {{- $ScrollStyle := (resources.Get "css/includes/scroll-bar.css") }}
+ {{- $includes = (append $ScrollStyle $includes) }}
+{{- end }}
+
+{{- $includes_all := $includes | resources.Concat "assets/css/includes.css" }}
+
+{{- $theme_vars := (resources.Get "css/core/theme-vars.css") }}
+{{- $reset := (resources.Get "css/core/reset.css") }}
+{{- $media := (resources.Get "css/core/zmedia.css") }}
+{{- $license_css := (resources.Get "css/core/license.css") }}
+{{- $common := (resources.Match "css/common/*.css") | resources.Concat "assets/css/common.css" }}
+
+{{- /* include `an-old-hope` if hljs is on */}}
+{{- $isHLJSdisabled := (site.Params.assets.disableHLJS | default false) }}
+{{- $hljs := (cond ($isHLJSdisabled) (".chroma { background-color: unset !important;}" | resources.FromString "assets/css/hljs-blank.css") (resources.Get "css/hljs/an-old-hope.min.css")) }}
+
+{{- /* order is important */}}
+{{- $core := (slice $theme_vars $reset $common $hljs $includes_all $media) | resources.Concat "assets/css/core.css" | resources.Minify }}
+{{- $extended := (resources.Match "css/extended/*.css") | resources.Concat "assets/css/extended.css" | resources.Minify }}
+
+{{- /* bundle all required css */}}
+{{- /* Add extended css after theme style */ -}}
+{{- $stylesheet := (slice $license_css $core $extended) | resources.Concat "assets/css/stylesheet.css" }}
+
+{{- if not site.Params.assets.disableFingerprinting }}
+{{- $stylesheet := $stylesheet | fingerprint }}
+
+{{- else }}
+
+{{- end }}
+
+{{- /* Search */}}
+{{- if (eq .Layout `search`) -}}
+
+{{- $fastsearch := resources.Get "js/fastsearch.js" | js.Build (dict "params" (dict "fuseOpts" site.Params.fuseOpts)) | resources.Minify }}
+{{- $fusejs := resources.Get "js/fuse.basic.min.js" }}
+{{- $license_js := resources.Get "js/license.js" }}
+{{- if not site.Params.assets.disableFingerprinting }}
+{{- $search := (slice $fusejs $license_js $fastsearch ) | resources.Concat "assets/js/search.js" | fingerprint }}
+
+{{- else }}
+{{- $search := (slice $fusejs $fastsearch ) | resources.Concat "assets/js/search.js" }}
+
+{{- end }}
+{{- end -}}
+
+{{- /* Highlight.js */}}
+{{- $isHLJSdisabled := (site.Params.assets.disableHLJS | default .Params.disableHLJS ) }}
+{{- if (and (eq .Kind "page") (ne .Layout "archives") (ne .Layout "search") (not $isHLJSdisabled)) }}
+{{- if not site.Params.assets.disableFingerprinting }}
+{{- $highlight := slice (resources.Get "js/highlight.min.js") | resources.Concat "assets/js/highlight.js" | fingerprint }}
+
+{{- else }}
+{{- $highlight := slice (resources.Get "js/highlight.min.js") | resources.Concat "assets/js/highlight.js" }}
+
+{{- end }}
+{{- end }}
+
+{{- /* Favicons */}}
+
+
+
+
+
+
+
+
+{{- /* RSS */}}
+{{ range .AlternativeOutputFormats -}}
+
+{{ end -}}
+{{- range .AllTranslations -}}
+
+{{ end -}}
+
+
+
+{{- partial "extend_head.html" . -}}
+
+{{- /* Misc */}}
+{{- if hugo.IsProduction | or (eq site.Params.env "production") }}
+{{- template "_internal/google_analytics.html" . }}
+{{- template "partials/templates/opengraph.html" . }}
+{{- template "partials/templates/twitter_cards.html" . }}
+{{- template "partials/templates/schema_json.html" . }}
+{{- end -}}
diff --git a/public/404.html b/public/404.html
index daf19dd..cad5a33 100644
--- a/public/404.html
+++ b/public/404.html
@@ -10,6 +10,7 @@
+
diff --git a/public/about/index.html b/public/about/index.html
index eb71a2a..53c5bf7 100644
--- a/public/about/index.html
+++ b/public/about/index.html
@@ -13,6 +13,7 @@ I have always dreaded this question. It doesn’t matter which setting I&rsq
So to solve this little problem of mine, I came up with this unoriginal idea.">
+
diff --git a/public/categories/book-notes/index.html b/public/categories/book-notes/index.html
index 637f266..8287f47 100644
--- a/public/categories/book-notes/index.html
+++ b/public/categories/book-notes/index.html
@@ -10,6 +10,7 @@
+
diff --git a/public/categories/book-notes/page/2/index.html b/public/categories/book-notes/page/2/index.html
index 02f9d2a..7976d2a 100644
--- a/public/categories/book-notes/page/2/index.html
+++ b/public/categories/book-notes/page/2/index.html
@@ -10,6 +10,7 @@
+
diff --git a/public/categories/cinema/index.html b/public/categories/cinema/index.html
index 1c6e799..3923682 100644
--- a/public/categories/cinema/index.html
+++ b/public/categories/cinema/index.html
@@ -10,6 +10,7 @@
+
diff --git a/public/categories/drawings/index.html b/public/categories/drawings/index.html
index b8390cd..f472364 100644
--- a/public/categories/drawings/index.html
+++ b/public/categories/drawings/index.html
@@ -10,6 +10,7 @@
+
diff --git a/public/categories/index.html b/public/categories/index.html
index 112185e..2ad30d6 100644
--- a/public/categories/index.html
+++ b/public/categories/index.html
@@ -10,6 +10,7 @@
+
diff --git a/public/categories/photography/index.html b/public/categories/photography/index.html
index 7322b60..0460b03 100644
--- a/public/categories/photography/index.html
+++ b/public/categories/photography/index.html
@@ -10,6 +10,7 @@
+
diff --git a/public/categories/poetry/index.html b/public/categories/poetry/index.html
index 59e73e0..f355825 100644
--- a/public/categories/poetry/index.html
+++ b/public/categories/poetry/index.html
@@ -10,6 +10,7 @@
+
diff --git a/public/index.html b/public/index.html
index 065ccac..af4cb10 100644
--- a/public/index.html
+++ b/public/index.html
@@ -11,6 +11,7 @@
+
diff --git a/public/musings/index.html b/public/musings/index.html
index 0a73646..aaf497d 100644
--- a/public/musings/index.html
+++ b/public/musings/index.html
@@ -10,6 +10,7 @@
+
diff --git a/public/page/2/index.html b/public/page/2/index.html
index f79bf98..86dfaac 100644
--- a/public/page/2/index.html
+++ b/public/page/2/index.html
@@ -11,6 +11,7 @@
+
diff --git a/public/page/3/index.html b/public/page/3/index.html
index e8af3df..123589e 100644
--- a/public/page/3/index.html
+++ b/public/page/3/index.html
@@ -11,6 +11,7 @@
+
diff --git a/public/page/4/index.html b/public/page/4/index.html
index 6177700..9e3e7af 100644
--- a/public/page/4/index.html
+++ b/public/page/4/index.html
@@ -11,6 +11,7 @@
+
diff --git a/public/photography/index.html b/public/photography/index.html
index 6529512..507d1f8 100644
--- a/public/photography/index.html
+++ b/public/photography/index.html
@@ -11,6 +11,7 @@
You can browse the images below using left/right keys. All the images are hosted on flickr, I’d recommend navigating to my photostream if you want to see them in full size. 1 You might need to enable Javascript if you’re unable to see the images properly.">
+
diff --git a/public/posts/cinema/3-iron/index.html b/public/posts/cinema/3-iron/index.html
index 1420c7b..1070399 100644
--- a/public/posts/cinema/3-iron/index.html
+++ b/public/posts/cinema/3-iron/index.html
@@ -12,6 +12,7 @@ We are all empty houses, waiting for someone to open the lock and set us free.
There’s something romantic about living on extremes. This applies as much to my film taste as it does to my day-to-day life. Nowhere is this more evident than in a crucial element of cinema - dialogues. On the one hand, you have Celine and Jesse showing us the entire world through their words, while on the other you have Sun and Tae doing the same thing without speaking a word.">
+
diff --git a/public/posts/cinema/after-life/index.html b/public/posts/cinema/after-life/index.html
index e84af8e..10414c5 100644
--- a/public/posts/cinema/after-life/index.html
+++ b/public/posts/cinema/after-life/index.html
@@ -11,6 +11,7 @@
Can there be a more difficult task than being asked to select a single memory from your life that you want to carry forever? As humans, we contain multitudes and we want to resist any attempt to put us into a box. But what happens if you’re asked to choose something which you’ll cherish for the rest of your life - would you let go of all the times when you were sad, angry, bitter, hypocrite and a bad human being?">
+
diff --git a/public/posts/cinema/anatolia/index.html b/public/posts/cinema/anatolia/index.html
index 55d9424..fbf4cbf 100644
--- a/public/posts/cinema/anatolia/index.html
+++ b/public/posts/cinema/anatolia/index.html
@@ -11,6 +11,7 @@
A slow, methodical display of patience and absurdity juxtaposed on the vast landscape, this film has something else going for it. When you read the synopsis or look at the posters, you expect a certain police procedural drama - the kind of which you’ve been accustomed to till date. What you get is a completely different take on the trope.">
+
diff --git a/public/posts/cinema/darjeeling/index.html b/public/posts/cinema/darjeeling/index.html
index cc3701f..a71fd93 100644
--- a/public/posts/cinema/darjeeling/index.html
+++ b/public/posts/cinema/darjeeling/index.html
@@ -11,6 +11,7 @@
You can spot Wes Anderson trademark from a mile ago, although this is the only movie by him which left me dissatisfied. The unique and swift camera movements are still there, the colors still pop out like from another universe, the absurd comic timings still bring a smile to your face - but you won’t feel the kind of personal emotional investment into the characters like you would in the rest of his filmography.">
+
diff --git a/public/posts/cinema/oslo-august/index.html b/public/posts/cinema/oslo-august/index.html
index 8e1617a..cc1fa4d 100644
--- a/public/posts/cinema/oslo-august/index.html
+++ b/public/posts/cinema/oslo-august/index.html
@@ -13,6 +13,7 @@ a diverse array of deficits in hedonic function, including reduced motivation or
At one point or another, we have all experienced some version of this phenomenon - may be characterized by an oversaturation of love, or caused by a prolonged mediocrity in life, or as in the case of our protagonist here, the complete loss of will and motivation to feel anything.">
+
diff --git a/public/posts/cinema/riding-solo/index.html b/public/posts/cinema/riding-solo/index.html
index dedcc71..cc77a5c 100644
--- a/public/posts/cinema/riding-solo/index.html
+++ b/public/posts/cinema/riding-solo/index.html
@@ -11,6 +11,7 @@
Motorcycling community is laden with fist-pumping-muscle-bulging-neckbeardy-speed-ninjas-Harley-fans, and it usually gets a bad rap all across the world. Gaurav Jani is none of these things. His passion and humility and curious nature reminded me why I loved biking in the first place. This is a must-watch for anyone fascinated with two wheels and the places they enable you to visit.">
+
diff --git a/public/posts/cinema/waking-life/index.html b/public/posts/cinema/waking-life/index.html
index 68bd751..acc9fa0 100644
--- a/public/posts/cinema/waking-life/index.html
+++ b/public/posts/cinema/waking-life/index.html
@@ -12,6 +12,7 @@ There are films which you wish you had watched earlier in life, and there are ot
The college sophomore me would have been really excited about discussing vague notions of self and freedom and free will and morality and dreams - and don’t get me wrong, mid-twenties me is equally as excited about these things as my former self, if not more so - but the problem lies in the superficiality of it all.">
+
diff --git a/public/posts/cinema/winter-sleep/index.html b/public/posts/cinema/winter-sleep/index.html
index 84c9d38..0a5cd8a 100644
--- a/public/posts/cinema/winter-sleep/index.html
+++ b/public/posts/cinema/winter-sleep/index.html
@@ -12,6 +12,7 @@ Over the years, I have increasingly gravitated towards films where supposedly &l
I had watched Once Upon a Time in Anatolia from the same director previously and much like films by Wes Anderson, I could immediately tell this was Ceylan’s film right from the start, although these two directors could not be any more different.">
+
diff --git a/public/posts/deference-vs-indifference/index.html b/public/posts/deference-vs-indifference/index.html
index 456c1c6..92943c4 100644
--- a/public/posts/deference-vs-indifference/index.html
+++ b/public/posts/deference-vs-indifference/index.html
@@ -19,6 +19,7 @@ of the stick when it burned,
lighting up my day with the secret enchantments,">
+
diff --git a/public/posts/drawings/a-beautiful-woman/index.html b/public/posts/drawings/a-beautiful-woman/index.html
index 1fa970f..7ded78f 100644
--- a/public/posts/drawings/a-beautiful-woman/index.html
+++ b/public/posts/drawings/a-beautiful-woman/index.html
@@ -10,6 +10,7 @@
+
diff --git a/public/posts/drawings/chaplin/index.html b/public/posts/drawings/chaplin/index.html
index 767e9e7..ab6efa9 100644
--- a/public/posts/drawings/chaplin/index.html
+++ b/public/posts/drawings/chaplin/index.html
@@ -10,6 +10,7 @@
+
diff --git a/public/posts/drawings/einstein/index.html b/public/posts/drawings/einstein/index.html
index 314964b..45a7e44 100644
--- a/public/posts/drawings/einstein/index.html
+++ b/public/posts/drawings/einstein/index.html
@@ -10,6 +10,7 @@
+
diff --git a/public/posts/drawings/gandhi/index.html b/public/posts/drawings/gandhi/index.html
index c721df3..664dcb7 100644
--- a/public/posts/drawings/gandhi/index.html
+++ b/public/posts/drawings/gandhi/index.html
@@ -10,6 +10,7 @@
+
diff --git a/public/posts/drawings/martin-freeman/index.html b/public/posts/drawings/martin-freeman/index.html
index 141f19d..256f29d 100644
--- a/public/posts/drawings/martin-freeman/index.html
+++ b/public/posts/drawings/martin-freeman/index.html
@@ -10,6 +10,7 @@
+
diff --git a/public/posts/drawings/teresa/index.html b/public/posts/drawings/teresa/index.html
index e909b5b..cfde50c 100644
--- a/public/posts/drawings/teresa/index.html
+++ b/public/posts/drawings/teresa/index.html
@@ -10,6 +10,7 @@
+
diff --git a/public/posts/index.html b/public/posts/index.html
index 3fd121b..a6a2c5d 100644
--- a/public/posts/index.html
+++ b/public/posts/index.html
@@ -10,6 +10,7 @@
+
diff --git a/public/posts/page/2/index.html b/public/posts/page/2/index.html
index 5d4d52a..9b7f40e 100644
--- a/public/posts/page/2/index.html
+++ b/public/posts/page/2/index.html
@@ -10,6 +10,7 @@
+
diff --git a/public/posts/page/3/index.html b/public/posts/page/3/index.html
index d8e0d87..f8d88d0 100644
--- a/public/posts/page/3/index.html
+++ b/public/posts/page/3/index.html
@@ -10,6 +10,7 @@
+
diff --git a/public/posts/page/4/index.html b/public/posts/page/4/index.html
index f8704f1..18357cc 100644
--- a/public/posts/page/4/index.html
+++ b/public/posts/page/4/index.html
@@ -10,6 +10,7 @@
+
diff --git a/public/posts/reading/annihilation-of-caste/index.html b/public/posts/reading/annihilation-of-caste/index.html
index 1d9cbf5..5355a5e 100644
--- a/public/posts/reading/annihilation-of-caste/index.html
+++ b/public/posts/reading/annihilation-of-caste/index.html
@@ -11,6 +11,7 @@
I find India really fascinating sometimes, even though I’ve lived my whole life here. What the cultural multitudes and colorful festivals hide underneath is an ugly facade which threatens to break everything that has been built over the years. What I find most fascinating is how we’ve conditioned ourselves to ignore the blatant reality and move ahead with an oblivious calm, living in shit and aspiring for the gold.">
+
diff --git a/public/posts/reading/azadi/index.html b/public/posts/reading/azadi/index.html
index 6191dab..73bd9a6 100644
--- a/public/posts/reading/azadi/index.html
+++ b/public/posts/reading/azadi/index.html
@@ -11,6 +11,7 @@
I don’t have a lot of friends who are supporters of the ruling BJP (well at least the ones who have disclosed it publicly), and consequently whenever the conversation shifts towards the ongoings in India, more often than not, we find ourselves agreeing with each other. Although this is perfectly alright for me on most days, on few ocaasions, I find a shadow of a doubt slowly creeping up inside - what if I’m living inside a bubble, an echo-chamber where I only get exposed to the ideas which I already hold to be true, especially relevant now that everything in our lives are getting regulated by algorithms.">
+
diff --git a/public/posts/reading/bad-blood/index.html b/public/posts/reading/bad-blood/index.html
index d4f2ebf..5ed5c04 100644
--- a/public/posts/reading/bad-blood/index.html
+++ b/public/posts/reading/bad-blood/index.html
@@ -11,6 +11,7 @@
How to fool the world and become a Billionaire I remember hearing about Elizabeth Holmes when I was in my late teens, at that impressionable age when you get hyper-inspired by reading about icons that are going to change the world. There was a profile of her in Wired, with an eye-catching image of her wearing a turtleneck black sweater holding what looked like a test-tube with a tiny amount of blood with a science-y background.">
+
diff --git a/public/posts/reading/behave-review/index.html b/public/posts/reading/behave-review/index.html
index 401731d..6a8e826 100644
--- a/public/posts/reading/behave-review/index.html
+++ b/public/posts/reading/behave-review/index.html
@@ -11,6 +11,7 @@
There are few books which leave you in a mesmerizing state after having read them. You ponder about it for days to come, want to scream your head off about it to anyone who’d listen, and then dwell in this fear of picking up another book because how can something else ever come close to being this perfect! I have felt this way before - first when I’d finished The Complete Sherlock Holmes, later when I was left in a daze for multiple days after finishing the notorious and brilliant House of Leaves, and much more recently when I was unable to sleep after reading Why We Sleep by Matthew Walker.">
+
diff --git a/public/posts/reading/four-thousand-weeks/index.html b/public/posts/reading/four-thousand-weeks/index.html
index 00ee3f1..810508c 100644
--- a/public/posts/reading/four-thousand-weeks/index.html
+++ b/public/posts/reading/four-thousand-weeks/index.html
@@ -10,6 +10,7 @@
+
diff --git a/public/posts/reading/glimpses-of-world-history/index.html b/public/posts/reading/glimpses-of-world-history/index.html
index ad5b289..20a5ac8 100644
--- a/public/posts/reading/glimpses-of-world-history/index.html
+++ b/public/posts/reading/glimpses-of-world-history/index.html
@@ -11,6 +11,7 @@
World history in a nutshell More than 1100 pages, this behemoth of a book still fails to capture the whole essence of world history - and rightly so. How can you combine over 2000 years of human history and still do justice to every element? But the unique manner in which this book - or more appropriately, collection of letters - has been written, it shines brightly amongst the plethora of history books you can find on this vast subject of world history.">
+
diff --git a/public/posts/reading/great-music/index.html b/public/posts/reading/great-music/index.html
index 9af0267..3e24a16 100644
--- a/public/posts/reading/great-music/index.html
+++ b/public/posts/reading/great-music/index.html
@@ -11,6 +11,7 @@
I have been a lover of music since my early childhood - runs in the family - and have imitated and performed songs (mostly inside my own head) on numerous occasions. Despite this lifelong love affair with music of all kinds, there was one particular genre of music that always baffled me. Mostly because of my own ignorance, but partially also because nobody else was talking about it.">
+
diff --git a/public/posts/reading/life-between-buildings/index.html b/public/posts/reading/life-between-buildings/index.html
index 1abf2cb..03300fb 100644
--- a/public/posts/reading/life-between-buildings/index.html
+++ b/public/posts/reading/life-between-buildings/index.html
@@ -11,6 +11,7 @@
One of the principal joys of reading is to discover the magic hidden in the seemingly banal things in life. I would’ve never cared to think twice about the intricacies of designing buildings and urban spaces, had it not been for this book. This serves as a gentle introduction to the fascinating study of how subtle differences in design of public spaces affect interactions on a much more broader scale.">
+
diff --git a/public/posts/reading/parenting/index.html b/public/posts/reading/parenting/index.html
index 7b53f89..3a5c3bd 100644
--- a/public/posts/reading/parenting/index.html
+++ b/public/posts/reading/parenting/index.html
@@ -12,6 +12,7 @@ I have had a very curious relationship with religion, although now that I talk t
As is the norm for every child brought up in religion, I used to consider myself special believing that I had a “personal relationship” with God.">
+
diff --git a/public/posts/reading/range-a-review/index.html b/public/posts/reading/range-a-review/index.html
index da97875..b17b891 100644
--- a/public/posts/reading/range-a-review/index.html
+++ b/public/posts/reading/range-a-review/index.html
@@ -12,6 +12,7 @@ Started with a tightly-knit structure, but faltered at the end. The last few cha
Main takeaway? Other than the central idea around which the book revolves (and succinctly mentioned as the book subtitle too), the idea of interleaving is what struck me the most. I had already read about this particular method in Michael Nielsen’s brilliant post on Anki (“Augmenting Long-term Memory”) and it was interesting to read about it formally in the book.">
+
diff --git a/public/posts/reading/reasons-to-stay-alive/index.html b/public/posts/reading/reasons-to-stay-alive/index.html
index 02b8537..9b63482 100644
--- a/public/posts/reading/reasons-to-stay-alive/index.html
+++ b/public/posts/reading/reasons-to-stay-alive/index.html
@@ -12,6 +12,7 @@ Reasons you should read this book:
If you’ve ever had a panic attack. If you’ve ever counted the number of times the ceiling fan rotates, just so you could avoid dealing with the endless voices in your head. If you’ve ever felt ashamed to admit that you might be suffering from the D-word. If reading about personal stories of how people overcame their mental illnesses soothes you.">
+
diff --git a/public/posts/reading/running-murakami/index.html b/public/posts/reading/running-murakami/index.html
index 1f8d6a9..64fe4b3 100644
--- a/public/posts/reading/running-murakami/index.html
+++ b/public/posts/reading/running-murakami/index.html
@@ -12,6 +12,7 @@ Pain is inevitable, suffering is optional.
I have no affinity for running, even for short jogs, and much less for wanting to run long distances. Although this is not because I hate exercises - one of those rare things that I figured out early in life was my desire to remain healthy as long as possible and that of course means I need to keep myself fit - but probably my distaste for running stems from the monotonous nature of the activity.">
+
diff --git a/public/posts/reading/shame-rushdie/index.html b/public/posts/reading/shame-rushdie/index.html
index 7de4b6a..fae463c 100644
--- a/public/posts/reading/shame-rushdie/index.html
+++ b/public/posts/reading/shame-rushdie/index.html
@@ -11,6 +11,7 @@
Now that I’ve moved away from reading fiction, I find that I face a lot of inertia to pick up something purely for pleasure. Maybe this is a nasty by-product of wanting to be as “productive” as possible. But the more I have drifted away from reading for pleasure, more mechanical the whole process has become for me. Partly to avoid this feeling, and partly because of my shame at seeing my bookshelf filled with dusty unread books, I picked up this one to assuage my feelings of guilt.">
+
diff --git a/public/posts/reading/stoner/index.html b/public/posts/reading/stoner/index.html
index 69ee23f..ea9f56c 100644
--- a/public/posts/reading/stoner/index.html
+++ b/public/posts/reading/stoner/index.html
@@ -11,6 +11,7 @@
Reading fiction has always been a double-edged sword for me. Some of the most intimate moments I’ve spent alone is while reading fictional stories, while at the same time, feeling a pang of disappointment for myself because I wasn’t doing anything “productive.” Is this mere entertainment? Am I just escaping my real-life responsibilities and reading stories of make-believe? While I still haven’t found sincere answers to these questions, I’ve grown more confident of what I enjoy and what I don’t, which has consequently helped me find peace with this conflict.">
+
diff --git a/public/posts/reading/the-course-of-love/index.html b/public/posts/reading/the-course-of-love/index.html
index 9ef4a35..84dd012 100644
--- a/public/posts/reading/the-course-of-love/index.html
+++ b/public/posts/reading/the-course-of-love/index.html
@@ -11,6 +11,7 @@
The School of Life - a massively popular YouTube channel - used to be this source of solace in some turbulent times of my college life. It is not something that you’d think would be cheerful and uplifting - a quick glance at some of the most popular videos of the channel would include titles such as “Why we go cold on our partners”, “Why you will marry the wrong person” etc.">
+
diff --git a/public/posts/reading/the-stranger-and-the-plague-a-review/index.html b/public/posts/reading/the-stranger-and-the-plague-a-review/index.html
index e429d7a..083773c 100644
--- a/public/posts/reading/the-stranger-and-the-plague-a-review/index.html
+++ b/public/posts/reading/the-stranger-and-the-plague-a-review/index.html
@@ -10,6 +10,7 @@
+
diff --git a/public/posts/reading/the-way-we-eat/index.html b/public/posts/reading/the-way-we-eat/index.html
index 8bec8a1..ff34114 100644
--- a/public/posts/reading/the-way-we-eat/index.html
+++ b/public/posts/reading/the-way-we-eat/index.html
@@ -13,6 +13,7 @@ If I’ve learnt something all these years, it is this universal maxim. Ever
There are a lot of similarities between food and religion. Both are deeply personal choices which are erroneously thought of as having a clear, set winning answer.">
+
diff --git a/public/posts/reading/waking-up/index.html b/public/posts/reading/waking-up/index.html
index fc2ed20..5268e42 100644
--- a/public/posts/reading/waking-up/index.html
+++ b/public/posts/reading/waking-up/index.html
@@ -12,6 +12,7 @@ A disappointing jumble of thoughts Disappointed.
I am an atheist interested in the power of mindfulness and the whole world of so-called spirituality, so naturally, I am the ideal audience that Sam Harris is looking for. But it disappointed in almost every domain that I had expectations in. Using deep-sounding difficult words and wrapping them in an almost mythical aura of “Consciousness”, this one was a huge letdown.">
+
diff --git a/public/posts/scared-in-lockdown/index.html b/public/posts/scared-in-lockdown/index.html
index a0cc256..44de59f 100644
--- a/public/posts/scared-in-lockdown/index.html
+++ b/public/posts/scared-in-lockdown/index.html
@@ -20,6 +20,7 @@ mutating inside my head as if a colony of ants was given
an open invitation to a room full of sugary syrup.">
+
diff --git a/public/search/index.html b/public/search/index.html
index aa7d4bc..56bf7e4 100644
--- a/public/search/index.html
+++ b/public/search/index.html
@@ -10,6 +10,7 @@
+
diff --git a/public/tags/animal-cruelty/index.html b/public/tags/animal-cruelty/index.html
index 0c213a9..16c1b2b 100644
--- a/public/tags/animal-cruelty/index.html
+++ b/public/tags/animal-cruelty/index.html
@@ -10,6 +10,7 @@
+
diff --git a/public/tags/animation/index.html b/public/tags/animation/index.html
index c930e41..f677f2b 100644
--- a/public/tags/animation/index.html
+++ b/public/tags/animation/index.html
@@ -10,6 +10,7 @@
+
diff --git a/public/tags/architecture/index.html b/public/tags/architecture/index.html
index 54a70c7..b365c52 100644
--- a/public/tags/architecture/index.html
+++ b/public/tags/architecture/index.html
@@ -10,6 +10,7 @@
+
diff --git a/public/tags/asia/index.html b/public/tags/asia/index.html
index c398e56..f715365 100644
--- a/public/tags/asia/index.html
+++ b/public/tags/asia/index.html
@@ -10,6 +10,7 @@
+
diff --git a/public/tags/audiobook/index.html b/public/tags/audiobook/index.html
index def9fe4..ada6613 100644
--- a/public/tags/audiobook/index.html
+++ b/public/tags/audiobook/index.html
@@ -10,6 +10,7 @@
+
diff --git a/public/tags/career-advice/index.html b/public/tags/career-advice/index.html
index acf8a33..161d1f9 100644
--- a/public/tags/career-advice/index.html
+++ b/public/tags/career-advice/index.html
@@ -10,6 +10,7 @@
+
diff --git a/public/tags/classical-music/index.html b/public/tags/classical-music/index.html
index 3b956b5..cf5af06 100644
--- a/public/tags/classical-music/index.html
+++ b/public/tags/classical-music/index.html
@@ -10,6 +10,7 @@
+
diff --git a/public/tags/colorful-quirks/index.html b/public/tags/colorful-quirks/index.html
index ac6e32b..26c8c07 100644
--- a/public/tags/colorful-quirks/index.html
+++ b/public/tags/colorful-quirks/index.html
@@ -10,6 +10,7 @@
+
diff --git a/public/tags/debating-ethics/index.html b/public/tags/debating-ethics/index.html
index ba62cbb..427151f 100644
--- a/public/tags/debating-ethics/index.html
+++ b/public/tags/debating-ethics/index.html
@@ -10,6 +10,7 @@
+
diff --git a/public/tags/depression/index.html b/public/tags/depression/index.html
index 76da75b..eefa882 100644
--- a/public/tags/depression/index.html
+++ b/public/tags/depression/index.html
@@ -10,6 +10,7 @@
+
diff --git a/public/tags/existentialism/index.html b/public/tags/existentialism/index.html
index 2641108..4c77cf3 100644
--- a/public/tags/existentialism/index.html
+++ b/public/tags/existentialism/index.html
@@ -10,6 +10,7 @@
+
diff --git a/public/tags/favourites/index.html b/public/tags/favourites/index.html
index 4e9f9c9..9af1ab9 100644
--- a/public/tags/favourites/index.html
+++ b/public/tags/favourites/index.html
@@ -10,6 +10,7 @@
+
diff --git a/public/tags/fiction/index.html b/public/tags/fiction/index.html
index 84b0bff..18d6740 100644
--- a/public/tags/fiction/index.html
+++ b/public/tags/fiction/index.html
@@ -10,6 +10,7 @@
+
diff --git a/public/tags/foreign-cinema/index.html b/public/tags/foreign-cinema/index.html
index abc8c16..378ae00 100644
--- a/public/tags/foreign-cinema/index.html
+++ b/public/tags/foreign-cinema/index.html
@@ -10,6 +10,7 @@
+
diff --git a/public/tags/health/index.html b/public/tags/health/index.html
index 563c5f8..545e536 100644
--- a/public/tags/health/index.html
+++ b/public/tags/health/index.html
@@ -10,6 +10,7 @@
+
diff --git a/public/tags/history/index.html b/public/tags/history/index.html
index 93ca793..8a42574 100644
--- a/public/tags/history/index.html
+++ b/public/tags/history/index.html
@@ -10,6 +10,7 @@
+
diff --git a/public/tags/index.html b/public/tags/index.html
index 0611102..980305d 100644
--- a/public/tags/index.html
+++ b/public/tags/index.html
@@ -10,6 +10,7 @@
+
diff --git a/public/tags/india/index.html b/public/tags/india/index.html
index eb097ac..b3da690 100644
--- a/public/tags/india/index.html
+++ b/public/tags/india/index.html
@@ -10,6 +10,7 @@
+
diff --git a/public/tags/indian-authors/index.html b/public/tags/indian-authors/index.html
index 320b547..4580d3d 100644
--- a/public/tags/indian-authors/index.html
+++ b/public/tags/indian-authors/index.html
@@ -10,6 +10,7 @@
+
diff --git a/public/tags/journalism/index.html b/public/tags/journalism/index.html
index 51532da..3886eb9 100644
--- a/public/tags/journalism/index.html
+++ b/public/tags/journalism/index.html
@@ -10,6 +10,7 @@
+
diff --git a/public/tags/letters/index.html b/public/tags/letters/index.html
index 38ee0d9..940108e 100644
--- a/public/tags/letters/index.html
+++ b/public/tags/letters/index.html
@@ -10,6 +10,7 @@
+
diff --git a/public/tags/meditation/index.html b/public/tags/meditation/index.html
index d96ede7..3bf5202 100644
--- a/public/tags/meditation/index.html
+++ b/public/tags/meditation/index.html
@@ -10,6 +10,7 @@
+
diff --git a/public/tags/minimalism/index.html b/public/tags/minimalism/index.html
index bd2e018..fea041d 100644
--- a/public/tags/minimalism/index.html
+++ b/public/tags/minimalism/index.html
@@ -10,6 +10,7 @@
+
diff --git a/public/tags/motorcycling/index.html b/public/tags/motorcycling/index.html
index 9ee94f9..457a0b7 100644
--- a/public/tags/motorcycling/index.html
+++ b/public/tags/motorcycling/index.html
@@ -10,6 +10,7 @@
+
diff --git a/public/tags/non-fiction/index.html b/public/tags/non-fiction/index.html
index 741b6d9..9bfe1ff 100644
--- a/public/tags/non-fiction/index.html
+++ b/public/tags/non-fiction/index.html
@@ -10,6 +10,7 @@
+
diff --git a/public/tags/non-fiction/page/2/index.html b/public/tags/non-fiction/page/2/index.html
index ae52d51..9b8fe95 100644
--- a/public/tags/non-fiction/page/2/index.html
+++ b/public/tags/non-fiction/page/2/index.html
@@ -10,6 +10,7 @@
+
diff --git a/public/tags/norwegian/index.html b/public/tags/norwegian/index.html
index dfeacdf..294cbfb 100644
--- a/public/tags/norwegian/index.html
+++ b/public/tags/norwegian/index.html
@@ -10,6 +10,7 @@
+
diff --git a/public/tags/parenting/index.html b/public/tags/parenting/index.html
index b461bb3..6771747 100644
--- a/public/tags/parenting/index.html
+++ b/public/tags/parenting/index.html
@@ -10,6 +10,7 @@
+
diff --git a/public/tags/philosophy/index.html b/public/tags/philosophy/index.html
index c6d824a..db31aea 100644
--- a/public/tags/philosophy/index.html
+++ b/public/tags/philosophy/index.html
@@ -10,6 +10,7 @@
+
diff --git a/public/tags/poetry/index.html b/public/tags/poetry/index.html
index 6020507..cfbea63 100644
--- a/public/tags/poetry/index.html
+++ b/public/tags/poetry/index.html
@@ -10,6 +10,7 @@
+
diff --git a/public/tags/productivity/index.html b/public/tags/productivity/index.html
index ee35843..6cab27e 100644
--- a/public/tags/productivity/index.html
+++ b/public/tags/productivity/index.html
@@ -10,6 +10,7 @@
+
diff --git a/public/tags/relationship/index.html b/public/tags/relationship/index.html
index c7d64cb..0a1e44a 100644
--- a/public/tags/relationship/index.html
+++ b/public/tags/relationship/index.html
@@ -10,6 +10,7 @@
+
diff --git a/public/tags/religion/index.html b/public/tags/religion/index.html
index cf9cab2..2822919 100644
--- a/public/tags/religion/index.html
+++ b/public/tags/religion/index.html
@@ -10,6 +10,7 @@
+
diff --git a/public/tags/review/index.html b/public/tags/review/index.html
index f4ef621..29eda53 100644
--- a/public/tags/review/index.html
+++ b/public/tags/review/index.html
@@ -10,6 +10,7 @@
+
diff --git a/public/tags/sketching/index.html b/public/tags/sketching/index.html
index 25c3420..de7bcc3 100644
--- a/public/tags/sketching/index.html
+++ b/public/tags/sketching/index.html
@@ -10,6 +10,7 @@
+
diff --git a/public/tags/society/index.html b/public/tags/society/index.html
index c94896f..18f347b 100644
--- a/public/tags/society/index.html
+++ b/public/tags/society/index.html
@@ -10,6 +10,7 @@
+
diff --git a/public/tags/turky/index.html b/public/tags/turky/index.html
index 51514ae..f4c1e65 100644
--- a/public/tags/turky/index.html
+++ b/public/tags/turky/index.html
@@ -10,6 +10,7 @@
+
diff --git a/public/tags/understanding-ourselves/index.html b/public/tags/understanding-ourselves/index.html
index d67616f..59d7734 100644
--- a/public/tags/understanding-ourselves/index.html
+++ b/public/tags/understanding-ourselves/index.html
@@ -10,6 +10,7 @@
+
diff --git a/public/tags/writing/index.html b/public/tags/writing/index.html
index 8f05c3f..74a6ce5 100644
--- a/public/tags/writing/index.html
+++ b/public/tags/writing/index.html
@@ -10,6 +10,7 @@
+