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.
13 lines
472 B
13 lines
472 B
5 years ago
|
{# 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>
|