-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpage-contact.php
More file actions
37 lines (34 loc) · 1.57 KB
/
page-contact.php
File metadata and controls
37 lines (34 loc) · 1.57 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
<?php
/**
* Template Name: Contact Form
*/
get_header();?>
<?php
$page = get_queried_object();
$ID = $page->ID;
$title = $page->post_title;
$sub_title = get_post_meta($ID, 'page_subtitle', true);
if ($sub_title){
echo'<section id="title" class="emerald-home"><div class="container"><div class="row"><div class="col-sm-12"><p>'.$sub_title.'</p></div></div></div></section>';
}
?>
<section id="contact-us" class="white-box">
<div class="container">
<div class="row">
<div id="content" class="site-content col-md-12>" role="main">
<div class="col-md-12">
<div class="col-md-6">
<?php the_post(); ?>
<?php the_content(); ?>
</div>
<div class="col-md-6">
<h2><?php _e('Our Location', ZEETEXTDOMAIN); ?></h2>
<iframe width="100%" height="200" frameborder="0" scrolling="no" marginheight="0" marginwidth="0"
src="https://maps.google.com.au/maps?f=q&source=s_q&hl=en&geocode=&q=<?php echo zee_option('zee_contact_map_location');?>&aq=0&ie=UTF8&hq=&hnear=<?php echo zee_option('zee_contact_map_location');?>&t=m&output=embed"></iframe>
</div>
</div>
</div><!--/#content-->
</div><!--/.row-->
</div><!--/.container-->
</section><!--/#contact-us-->
<?php get_footer(); ?>