aboutsummaryrefslogtreecommitdiff
path: root/templates/index.html
blob: fb64505a575e72ce95e0111314675e6c81a0eb10 (plain) (blame)
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
38
39
40
41
42
{% extends 'base.html' %}

{% block content %}
<h1>Welcome!</h1>

<section>
    <a href="https://512kb.club">
        <img src="https://512kb.club/assets/images/green-team.svg" alt="a proud member of the green team of 512KB club" />
    </a>
</section>

<section>
    <p>Hi there! Thanks for stopping by my website!</p>

    <p>
        My name is Valentin Popov, and I'm a Software Developer and Team Leader at
        <a href="https://digineat.com/" target="_blank">DigiNeat LLC</a>. I love all things OpenSource and have a
        particular interest in ethical hacking, building electronic gadgets, and 3D printing. I'm a pro at working with
        languages like JavaScript, TypeScript, Rust, Go and PHP, and I'm always looking to learn more and improve my
        skills.
    </p>

    <p>
        I'm excited to share my experiences and knowledge with you through this website, so I hope you find the content
        helpful and informative.
    </p>
</section>

<section>
    {% include 'includes/contacts.html' %}
</section>

<section>
    <h2>Useful links</h2>
    {% include 'includes/useful_links.html' %}
</section>

<section>
    <h2>Recent posts</h2>
    {% include 'includes/recent_posts.html' %}
</section>
{% endblock content %}