blob: 7491bdfd48fc0ca23f4e2a36a9cfa9fd84090032 (
plain)
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
|
---
layout: intro.njk
title: Home
alternatetitle: "Hello Friend!! My name is Indrajith K L."
---
<div class="text-center">
<div>
<p class="first-letter">
{{alternatetitle}} I'm a web developer, hobbyist game developer from 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 are here why don't you read some <a href="/posts" class="text-main-cardheading font-bold">posts</a>.
</p>
</div>
</div>
<div>
<div>
<h4>Books I'm reading now</h4>
<div id="gr_grid_widget_1676363812"></div>
</div>
<h4>Recent Posts</h4>
<ul>
{% for post in collections.posts | reverse %}
{% if (loop.index <= 4) %}
<li>
<p>
<a href="{{post.url}}">{{post.data.title}}</a>
</p>
</li>
{% endif %}
{% else %}
<li>
<p>No Posts</p>
</li>
{% endfor %}
</ul>
</div>
<script src="https://www.goodreads.com/review/grid_widget/162656738.Indrajith's%20currently-reading%20book%20montage?cover_size=medium&hide_link=&hide_title=true&num_books=20&order=a&shelf=currently-reading&sort=date_added&widget_id=1676363812" type="text/javascript" charset="utf-8"></script>
|