blob: 5373f06c31a70a86cd0e2a23f25a2335465c64fb (
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
|
---
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>
<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>
|