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