35 lines
879 B
Twig
35 lines
879 B
Twig
---
|
|
layout: page
|
|
title: Contact
|
|
email: cardiffbjj@googlemail.com
|
|
phone: 07976 461973
|
|
location: |
|
|
The Rob Taylor Jiu-Jitsu Academy
|
|
9 East Moors Business Park
|
|
East Moors Road
|
|
Cardiff
|
|
CF24 5JX
|
|
---
|
|
<div class="md:flex mb-8 md:max-w-lg md:mx-auto">
|
|
<div class="md:w-1/2 text-center">
|
|
<p><span class="font-bold">Email:</span> {{ page.email }}</p>
|
|
</div>
|
|
<div class="md:w-1/2 text-center">
|
|
<p><span class="font-bold">Phone:</span> {{ page.phone }}</p>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="md:flex mb-8 md:max-w-xl md:mx-auto -mx-4">
|
|
<div class="px-4 md:flex md:flex-col md:justify-center mb-4 md:mb-0 w-full md:w-1/3">
|
|
<h2 class="mb-2">Location</h2>
|
|
|
|
{{ page.location|nl2br }}
|
|
</div>
|
|
|
|
<div class="mx-4 overflow-hidden">
|
|
{% include 'pages/contact/map' %}
|
|
</div>
|
|
</div>
|
|
|
|
{% include 'pages/contact/form' %}
|