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

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

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

{{ category }}

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