forked from nandorocker/evenly-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
31 lines (30 loc) · 1.25 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
---
layout: default
title: Contact Us
permalink: /contact/
---
<section class="contact-block container">
<h1>Say Hello!</h1>
<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="#">
<!-- 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>
<div class="option-box">
<p>Or you can send us an email or call.</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>
</div>
</section>