You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
599 B
14 lines
599 B
{# Uses page variable: filter.skills #}
|
|
{# Uses data store: skills.categories #}
|
|
{% set skillFilter = filter.skills if filter and filter.skills else "all" %}
|
|
{% set skillCategoriesFiltered = skills.categories | identifyHighlightsRecursive(skillFilter, "skills") %}
|
|
|
|
<div class="section-header">
|
|
<h2>Skills</h2>
|
|
{% if skillCategoriesFiltered | hasLowlightsRecursive("skills") %}
|
|
{% include "components/resume/highlight-icon.njk" %}
|
|
{% endif %}
|
|
</div>
|
|
{% for category in skillCategoriesFiltered | sortHighlightsFirst %}
|
|
{% include "components/resume/skill-subcategory.njk" %}
|
|
{% endfor %}
|
|
|