mirror of
https://github.com/ipdb/website.git
synced 2024-11-13 16:54:50 +01:00
27 lines
805 B
HTML
27 lines
805 B
HTML
{% assign contact = site.data.contact %}
|
|
|
|
<div class="company">
|
|
<h4 class="company__name">{{ contact.company }}</h4>
|
|
<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>
|