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.njk

12 lines
525 B

{# Uses loop variable: skill #}
{# Uses data store: skills.proficiency #}
<li class="skill{% if not skill.highlight %} lowlight{% endif %}" title="{{ skills.proficiency[skill.proficiency].label }}">
{% if skill.img %}
<img src="/img/{{ skill.img }}" class="icon" aria-hidden="true" />
{% endif %}
<img src="/img/{{ skills.proficiency[skill.proficiency].image }}"
class="proficiency"
aria-label="{{ skills.proficiency[skill.proficiency].label }}" />
<span class="name">{{ skill.name }}</span>
</li>