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

{{ p.name }}

{{ p.badge }}

{{ p.headline }}

📍 {{ p.location }} ⚡ FastAPI 🗄️ PostgreSQL 🐳 Docker 🧩 Alembic

{{ p.about }}

Experience

{% for job in p.experience %}
{{ job.role }}
{{ job.company }} {% if job.type %} • {{ job.type }}{% endif %}
{{ job.period }}
{% if job.duration %}
{{ job.duration }}
{% endif %}
{% if job.location %}{{ job.location }}{% endif %}
    {% for b in job.bullets %}
  • {{ b }}
  • {% endfor %}
{% endfor %}

Skills

{% for g in p.skills_groups %}
{{ g.title }}
{{ g.skills|length }} items
{% for s in g.skills %} {{ s }} {% endfor %}
{% endfor %}

Education

{% for ed in p.education %}
{{ ed.school }}
{% if ed.program %}
{{ ed.program }}
{% endif %}
{{ ed.period }}
{% endfor %}

Contact

{% endblock %}