{% extends "base.html" %} {% block content %}

{{ site.title }}

{{ site.description }}

{% if skills %}

Skills

{% for skill in skills %}
{{ skill.name }}
{% endfor %}
{% endif %} {% if experience %}

Recent Experience

{% for exp in experience[:3] %}

{{ exp.meta.title }}

{{ exp.meta.company }} • {{ exp.meta.position }}

{{ exp.meta.start_date|date("%B %Y") }} - {% if exp.meta.current or not exp.meta.end_date %}Present{% else %}{{ exp.meta.end_date|date("%B %Y") }}{% endif %}

{% endfor %}
{% endif %}

Featured Projects

{% for project in projects[:6] %}

{{ project.meta.title }}

{{ project.meta.get('description', project.markdown[:150] + '...') }}

{% if project.meta.get('tags') %}
{% for tag in project.meta.tags %} {{ tag }} {% endfor %}
{% endif %}
{% endfor %}
{% if education %}

Education

{% for edu in education[:3] %}

{{ edu.meta.title }}

{{ edu.meta.institution }}

{{ edu.meta.degree }}{% if edu.meta.field %} in {{ edu.meta.field }}{% endif %}

{% endfor %}
{% endif %}

Get in Touch

I'm open to new opportunities, collaborations, or technical discussions. Let's connect!

{% if social.email %} Email Me {% endif %} {% if social.github %} View GitHub {% endif %} {% if social.website %} Visit Website {% endif %}
{% endblock %}