{% extends "base.html" %} {% block content %}
{{ site.get('greeting', 'Welcome') }}

{{ site.author }}{% if site.get('headline') %}
{{ site.headline }}{% endif %}

{{ site.description }}

{% if projects or experience %}
{% if projects %}
0 Projects
{% endif %} {% if experience %}
0 Roles
{% endif %} {% if skills %}
0 Skills
{% endif %}
{% endif %}
{% if skills %}
Expertise

Skills & Technologies

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

Experience

{% for exp in experience[:3] %}
{% if exp.meta.current or not exp.meta.end_date %} Current {% endif %}

{{ exp.meta.position|default(exp.meta.title) }}

{{ exp.meta.company }}{% if exp.meta.location %} · {{ exp.meta.location }}{% endif %}

{{ 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 %}
{% if experience|length > 3 %} {% endif %}
{% endif %}
Portfolio

Projects

{% for project in projects[:6] %}
{% if project.meta.get('featured') %} Featured {% endif %}

{{ project.meta.title }}

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

{% if project.meta.get('tags') %}
{% for tag in project.meta.tags[:4] %} {{ tag }} {% endfor %}
{% endif %}
{% endfor %}
{% if projects|length > 6 %} {% endif %}
{% if education %}
Academic

Education

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

{{ edu.meta.institution }}

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

{% endfor %}
{% endif %}

Let's Connect

Open to new opportunities, collaborations, or technical discussions.

{% if social.email %} Send Email {% endif %} {% if social.github %} GitHub {% endif %} {% if social.linkedin %} LinkedIn {% endif %}
{% endblock %}