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.
11 lines
379 B
11 lines
379 B
5 years ago
|
{# 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 %}
|
||
|
{% include "components/resume/skill.njk" %}
|
||
|
{% endfor %}
|
||
|
</ul>
|
||
|
</section>
|