1
0
Fork 0
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.
 
 
 
reyasume/_includes/components/resume/skill-subcategory.njk

10 lines
379 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 %}
{% include "components/resume/skill.njk" %}
{% endfor %}
</ul>
</section>