aboutsummaryrefslogtreecommitdiff
path: root/src/index.njk
blob: 238517df7a62a6ff75244a79399eff117fc8b64a (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&amp;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>{{post.data.title}} <a href="{{post.url}}">Read more</span></a></p>
                </li>
            {% endif %}
        {% else %}
            <li>
                <p>No Posts</p>
            </li>
        {% endfor %}
    </ul>
</div>