mirror of
https://github.com/ipdb/website.git
synced 2024-11-22 01:26:52 +01:00
36 lines
1.1 KiB
HTML
Executable File
36 lines
1.1 KiB
HTML
Executable File
{% assign contact = site.data.contact %}
|
|
|
|
<div class="company">
|
|
<h4 class="company__name">{{ contact.company }}</h4>
|
|
{% if include.imprint %}
|
|
<p>{{ contact.registration}}</p>
|
|
<h5>Represented by</h5>
|
|
<p>
|
|
{% for representative in site.data.board | limit: 3 %}
|
|
{{ representative.position }}: {{ representative.name }}<br />
|
|
{% endfor %}
|
|
</p>
|
|
{% endif %}
|
|
<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>
|
|
|
|
<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>
|