-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfooter.php
More file actions
65 lines (65 loc) · 2.11 KB
/
footer.php
File metadata and controls
65 lines (65 loc) · 2.11 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<footer id="contacto" class="sticky-footer trans">
<header>
<div class="container-full">
<div class="span2"><h5>Encuentranos</h5></div>
<div class="span1"><h5>Contactanos</h5></div>
</div>
</header>
<div class="grey-section">
<div class="container-full">
<div class="span2">
<div class="row">
<div class="half">
<div id="map-canvas"></div>
</div>
<div class="half">
<div class="contact-info">
<p><strong>Direccion / </strong> <span>Carrera. 9 No. 113 - 52
Oficina 1901</span></p>
<p><strong>Telefonos / </strong> <span>(+57) 4 86 33 99 <br>
(+57) 300 203 36 20 <br>
(+57) 313 8 59 90 03</span></p>
<p><strong>Email / </strong> <span>comercial@organica.com.co <br>
operativo@organica.com.co <br>
contacto@organica.com.co</span></p>
<div class="no-sho">
<p><strong>www.organicasas.com</strong></p>
<p><strong>Bogotá, Colombia</strong></p>
</div>
</div>
</div>
</div>
</div>
<div class="span1">
<header class="small-header">
<h5>Contactanos</h5>
</header>
<div class="row">
<form id="contactForm" method="POST" action=".">
<div class="form_result">
<?php if(isset($emailSent) && $emailSent == true) { ?>
<div class="thanks">
<p>Gracias! su mensaje ha sido enviado</p>
</div>
<?php } ?>
</div>
<input type="text" name="name" id="name" placeholder="Nombre">
<input type="text" name="email" id="email" placeholder="Email">
<input type="text" name="tel" id="tel" placeholder="Telefono">
<textarea name="mensaje" id="mensaje" placeholder="Comentarios"></textarea>
<button type="submit">Enviar ></button>
<input type="hidden" name="submitted" id="submitted" value="true" />
</form>
</div>
</div>
</div>
</div>
<div class="copyright">
<div class="container">
<p>All works © ORGANICA S.A.S. 2014 Please do not reproduce without the expressed written consent of ORGANICA S.A.S. 2014</p>
</div>
</div>
</footer>
<?php wp_footer() ?>
</body>
</html>