-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcontact.html
35 lines (32 loc) · 1.38 KB
/
contact.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
---
layout: default
title: Contact Us
permalink: /contact/
---
<section class="contact-block container">
<h1>Say Hello!</h1>
<div class="option-box">
<p>You can send us an email or call.</p>
<p>
<a href="mailto:{{ site.email }}" class="btn-primary email"><span>{{ site.email }}</span></a><br>
<a href="tel:{{ site.phone | remove:' ' | remove:'+' }}" class="btn-primary"><span>{{ site.phone }}</span></a>
</p>
</div>
<p>If you're in Berlin, come visit and have <br>some coffee with us!</p>
<address>
<span>{{ site.company_name }}<br>{{ site.address }}<br>{{ site.zip }} {{ site.city }}</span>
</address>
<div class="map">
<a href="http://maps.apple.com/maps?q=evenly%20GmbH&hl=de&ll=52.500343,13.425465&spn=0.002423,0.005043&num=1&t=m&z=18">
<!-- picturefill: full manual control -->
<picture>
<!--[if IE 9]><video style="display: none;"><![endif]-->
<source srcset="/images/map-small.jpg, /images/map-small-2x.jpg 2x" media="(max-width: 767px)">
<source srcset="/images/map-medium.jpg, /images/map-medium-2x.jpg 2x" media="(max-width: 1023px)">
<source srcset="/images/map.jpg">
<!--[if IE 9]></video><![endif]-->
<img src="map.jpg" alt="map">
</picture>
</a>
</div>
</section>