{% extends "core/base.html" %} {% block title %}Skills - {{ personal_info.name }}{% endblock %} {% block content %} {% include "core/sections/page_header.html" with title="Skills & Expertise" description="Technical expertise and competencies" %}
{% for category, skills in skills_by_category.items %}

{{ category }}

{% for skill in skills %}

{{ skill.name }}

Proficiency Level

{% for i in "12345" %}
{% endfor %}

{{ skill.years_of_experience }} year{{ skill.years_of_experience|pluralize }} experience

{% if skill.description %}

{{ skill.description }}

{% endif %}
{% endfor %}
{% empty %}

No skills added yet.

{% endfor %}
{% endblock %}