gcg-website/themes/educenter-hugo/layouts/contact/list.html
Denys Konovalov e6f30cd691 Update
2020-08-30 22:25:22 +02:00

50 lines
2.0 KiB
HTML

{{ define "main" }}
<!-- contact -->
<section class="section bg-gray">
<div class="container">
<div class="row">
<div class="col-lg-12">
<h2 class="section-title">{{ i18n "contact_us" }}</h2>
</div>
</div>
<div class="row">
<div class="col-lg-7 mb-4 mb-lg-0">
<form action="" method="POST">
<input type="text" class="form-control mb-3" id="name" name="name" placeholder="Your Name">
<input type="email" class="form-control mb-3" id="mail" name="mail" placeholder="Your Email">
<input type="text" class="form-control mb-3" id="subject" name="subject" placeholder="Subject">
<textarea name="message" id="message" class="form-control mb-3" placeholder="Your Message"></textarea>
<button type="submit" value="send" class="btn btn-primary">{{ i18n "send" }}</button>
</form>
</div>
<div class="col-lg-5 content">
{{ .Content }}
<a href="tel:{{ .Site.Params.mobile }}" class="text-color h5 d-block">{{ .Site.Params.mobile }}</a>
<a href="mailto:{{ .Site.Params.email }}" class="mb-5 text-color h5 d-block">{{ .Site.Params.email }}</a>
<a href="{{ .Site.Params.route_link }}" class="mb-5 text-color d-block">{{ .Site.Params.address | markdownify }}</a>
</div>
</div>
</div>
</section>
<!-- /contact -->
<!-- gmap -->
<section class="section pt-0 bg-gray">
<!-- OPenStreetMap -->
<div class="map_canvas container">
<iframe width="100%" height="500" scrolling="no" marginheight="0" marginwidth="0" src="https://www.openstreetmap.org/export/embed.html?bbox=11.963604390621185%2C51.472637532848985%2C11.967144906520845%2C51.474201296827125&amp;layer=mapnik&amp;marker=51.473419421538615%2C11.965374648571014" style="border:1px solid; border-color: #1e1e4b;"></iframe>
</div>
<style>
.map_canvas {
overflow:hidden;
background:none!important;
height:500px;
width:100%;
center:true;
}
</style>
</section>
{{ end }}