2017-09-07 14:09:39 +02:00
|
|
|
{% assign contact = site.data.contact %}
|
|
|
|
|
|
|
|
<div class="company">
|
|
|
|
<h4 class="company__name">{{ contact.company }}</h4>
|
2017-11-07 13:11:32 +01:00
|
|
|
{% if include.imprint %}
|
|
|
|
<p>{{ contact.registration}}</p>
|
|
|
|
<h5>Represented by</h5>
|
|
|
|
<p>
|
2017-11-07 13:20:05 +01:00
|
|
|
{% for representative in site.data.board | limit: 3 %}
|
|
|
|
{{ representative.position }}: {{ representative.name }}<br />
|
|
|
|
{% endfor %}
|
2017-11-07 13:11:32 +01:00
|
|
|
</p>
|
|
|
|
{% endif %}
|
2017-09-07 14:09:39 +02:00
|
|
|
<p>
|
|
|
|
<a href="mailto:{{ contact.email }}">{{ contact.email }}</a>
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
{{ contact.address.street }}<br />
|
|
|
|
{{ contact.address.zip }} {{ contact.address.city }}<br />
|
|
|
|
{{ contact.address.country }}
|
|
|
|
</p>
|
|
|
|
</div>
|
2018-10-01 13:42:22 +02:00
|
|
|
|
|
|
|
<ul class="social-list">
|
|
|
|
{% for item in contact.social %}
|
|
|
|
<li>
|
|
|
|
<a href="{{ item.link }}" title="{{ item.name }}">
|
|
|
|
<svg class="icon" aria-labelledby="title">
|
|
|
|
<title>{{ item.name }}</title>
|
|
|
|
<use xlink:href="/assets/img/sprite.svg#icon-{{ item.name | downcase }}"></use>
|
|
|
|
</svg>
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
{% endfor %}
|
|
|
|
</ul>
|