{# CV Skills Section - skills grouped by category Data fetched from /cv/data.json via homepage plugin #} {% if cv and cv.skills and (cv.skills | dictsort | length) %}

{{ section.config.title or "Skills" }}

{% for category, items in cv.skills %} {% if not filterType or (cv.skillTypes and cv.skillTypes[category] == filterType) or not cv.skillTypes or not cv.skillTypes[category] %}

{{ category }}

{% for skill in items %} {{ skill }} {% endfor %}
{% endif %} {% endfor %}
{% endif %}