From 191fb0c0aa31a5142f81ea6f7fcf253b10f0297c Mon Sep 17 00:00:00 2001 From: Indrajith K L Date: Sun, 28 Aug 2022 00:41:33 +0530 Subject: * Project Restructred * Adds Tailwind * Completed Intro Page, About, Posts Listing * Changes build and development scripts --- src/index.njk | 32 +++++++++++++++++++++++++++++--- 1 file changed, 29 insertions(+), 3 deletions(-) (limited to 'src/index.njk') diff --git a/src/index.njk b/src/index.njk index 7668313..f0c0d75 100644 --- a/src/index.njk +++ b/src/index.njk @@ -1,5 +1,31 @@ --- -layout: base.njk -title: Hello +layout: intro.njk +title: "Hello Friend!! My name is Indrajith K L." --- -

Website Under Maintenance

\ No newline at end of file +
+
+

{{title}}

+

+ I'm a web developer, hobbyist game developer from Kerala, India working as a front-end developer. + This site is where I write about my fun side projects, R&D's, random thoughts, game development etc. Since you here why don't you read some posts from here. +

+
+
+ +
+

Recent Posts

+
+ {% for post in collections.posts | reverse %} + {% if (loop.index <= 4) %} +
+

{{post.data.title}}

+ +
+ {% endif %} + {% else %} +
+

No Posts

+
+ {% endfor %} +
+
-- cgit v1.2.3