2024-03-13 19:14:10 +01:00
{%- import "components/talent_card.html" as tc -%}
2024-07-12 23:26:16 +02:00
{%- import "components/social_card.html" as sc -%}
2024-01-11 20:43:47 +01:00
{% extends "base.html" %}
{% block title %}Introduction{% endblock %}
{% block content %}
2024-09-12 15:00:20 +02:00
< section class = "index-container lg:grid lg:grid-cols-2 xl:grid-cols-[1fr_2fr] lg:gap-y-8 lg:gap-x-32 max-w-maxindex mx-auto" >
< section id = "about-me" >
2024-09-20 11:51:29 +02:00
<!-- <header class="index - header hidden"> -->
<!-- <figure class="profile - pic"> -->
<!-- <picture> -->
<!-- <img -->
<!-- alt="Portrait" -->
<!-- {# TODO Take a new photo #} -->
<!-- src="/images/profile - portugal - landscape.jpg" -->
<!-- /> -->
<!-- </picture> -->
<!-- </figure> -->
2024-09-12 15:00:20 +02:00
2024-09-20 11:51:29 +02:00
<!-- <p class="motto"> -->
<!-- <cite>“Let your ambition carry you.”</cite> -->
<!-- <span class="cite - owner"> - La Flame</span> -->
<!-- </p> -->
<!-- </header> -->
2024-09-12 15:00:20 +02:00
2024-09-18 18:36:54 +02:00
< h2 class = "text-blue-950 font-bold text-2xl m-5 md:text-4xl" > About me< / h2 >
2024-09-12 15:00:20 +02:00
2024-09-12 17:03:11 +02:00
< p class = "mx-5 md:text-xl text-justify" >
2024-09-12 15:00:20 +02:00
Welcome to my personal website. My name is
< strong > Michal Vanko< / strong >
and I'm a
< em > < a href = "https://en.wikipedia.org/wiki/Programmer" > programmer< / a > < / em >
. I am developing software for more than half of my life and < strong > I love it!< / strong > Sometimes I stream working on my side projects and building a < a href = "https://discord.gg/2cGg7kwZEh" > community of like minded people< / a > . Here you can find blogs of my thoughts and journeys, as well as links to my socials where you can see other content.< / p >
2024-09-25 11:05:19 +02:00
< section id = "talent-cards" class = "flex flex-col items-center" >
2024-09-12 15:00:20 +02:00
{% call tc::talent_card("code", "Web development", "Extensive expertise in creating performant, live web applications and websites") %}
{% call tc::talent_card("gamepad", "Game development", "Extensive expertise in creating performant, live web applications and websites") %}
2024-09-20 16:31:00 +02:00
{% call tc::talent_card("person-chalkboard", "Mentoring & Consulting", "I offer consulting sessions to assist you in developing < strong > higher-quality software< / strong > and share insights from crafting robust, professional web applications. < a href = \"https://calendly.com/michalvankosk/30min\" > Schedule a session with me< / a > and elevate your projects together.") %}
2024-09-12 15:00:20 +02:00
< / section >
< / section >
< section id = "blog" class = "lg:col-span-2 lg:row-start-2 xl:col-auto xl:row-start-auto xl:row-span-2" >
2024-10-02 15:32:40 +02:00
{% let segment = "blog".to_string() %}
2024-09-18 18:36:54 +02:00
< h2 class = "text-blue-950 font-bold text-2xl md:text-4xl m-5" > < a href = "/blog" class = "text-blue-950 no-underline" > Blog< / a > < / h2 >
2024-09-12 15:00:20 +02:00
< section id = "blog-tags" >
< ul class = "mx-5" >
{% for tag in blog_tags %}
< li class = "inline-block mx-0.5 p-0.5 md:text-xl" >
2024-10-02 15:32:40 +02:00
< a href = "/{{segment}}/tags/{{tag}}" class = "text-pink-950" > #{{tag|capitalize}}< / a >
2024-09-12 15:00:20 +02:00
< / li >
{% endfor %}
< / ul >
< / section >
2024-09-20 11:51:29 +02:00
< hr class = "border-slate-300 m-5" >
2024-09-12 15:00:20 +02:00
2024-04-30 23:10:12 +02:00
< ul class = "mx-5" >
2024-09-12 15:00:20 +02:00
{% for post in featured_blog_posts %}
< li >
{% include "components/blog_post_preview.html" %}
2024-09-20 11:51:29 +02:00
< hr class = "border-slate-300 my-5 md:my-8" >
2024-04-30 23:10:12 +02:00
< / li >
2024-09-12 15:00:20 +02:00
{% endfor %}
2024-04-30 23:10:12 +02:00
< / ul >
2024-09-27 11:52:25 +02:00
< section class = "text-center my-3 md:text-lg" >
< a href = "/blog" > see all blog posts< / a >
< / section >
2024-04-30 23:10:12 +02:00
< / section >
2024-09-12 15:00:20 +02:00
< section id = "socials" >
2024-09-12 17:03:11 +02:00
{% include "sections/social.html" %}
2024-09-12 15:00:20 +02:00
< / section >
2024-09-20 11:51:29 +02:00
< hr class = "border-slate-300 m-5 lg:hidden" >
2024-09-12 15:00:20 +02:00
< section id = "showcase" class = "col-span-2" >
2024-09-12 17:03:11 +02:00
{% include "sections/showcase.html" %}
2024-09-12 15:00:20 +02:00
< / section >
< / section > <!-- /.index - container -->
2024-07-21 22:42:54 +02:00
2024-01-11 20:43:47 +01:00
{% endblock %}