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.
10 lines
401 B
10 lines
401 B
{# Uses loop variable: category #}
|
|
|
|
<section class="skill-category{% if not category.highlight %} lowlight lowlight-no-gradient{% endif %}">
|
|
<h3{% if not category.highlight %} class="lowlight"{% endif %}>{{ category.title }}</h3>
|
|
<ul class="skills">
|
|
{% for skill in category.skills | sortHighlightsFirst %}
|
|
{% include "components/resume/skill.njk" %}
|
|
{% endfor %}
|
|
</ul>
|
|
</section>
|
|
|