{% for tech in project.technologies %}
{{ tech }}
{% endfor %}
{% if project.status == "active" %}
Active
{% endif %}
{% endfor %}
{% endif %}
{# Skills Section - only show if data exists #}
{% if cv.skills and (cv.skills | dictsort | length) %}
Skills
{% for category, skills in cv.skills %}
{{ category }}
{% for skill in skills %}
{{ skill }}
{% endfor %}
{% endfor %}
{% endif %}
{# Education & Languages - only show if data exists #}
{% if (cv.education and cv.education.length) or (cv.languages and cv.languages.length) %}
{# Education #}
{% if cv.education and cv.education.length %}
Education
{% for edu in cv.education %}
{{ edu.degree }}
{{ edu.institution }}
{{ edu.year }} · {{ edu.location }}
{% endfor %}
{% endif %}
{# Languages #}
{% if cv.languages and cv.languages.length %}
Languages
{% for lang in cv.languages %}
{{ lang.name }}{{ lang.level }}
{% endfor %}
{% endif %}
{% endif %}
{# Interests - only show if data exists #}
{% if cv.interests and cv.interests.length %}
Interests
{% for interest in cv.interests %}
{{ interest }}
{% endfor %}
{% endif %}
{# Last Updated - only show if CV has content #}
{% if cv.lastUpdated and (cv.experience.length or cv.projects.length) %}