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

12 lines
472 B

{# Uses loop variable: contact #}
<li title="{{ contact.name }}" class="contact{% if not contact.link %} container{% endif %}{% if not contact.highlight %} lowlight{% endif %}">
{% if contact.link %}
<a class="container" href="{{ contact.link }}" rel="nofollow">
{% endif %}
<img src="/img/{{ contact.img }}" alt="{{ contact.name }}" class="icon"/>
<span class="text">{{ contact.text }}</span>
{% if contact.link %}
</a>
{% endif %}
</li>