default.php
1.52 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
<?php
/*
* Template Name: default
*/
get_header("home");
?>
<div id="homecontent" class="home-content default">
<?php if (get_the_post_thumbnail()) { ?>
<div class="head-image" style="background-image:url(<?= get_the_post_thumbnail_url() ?>) !important;"></div>
<?php } ?>
<div class="row">
<?php get_template_part('loop', 'page'); ?>
</div>
</div>
<div class="modal fade" style='visibility:hidden' id="contact-team-modal" tabindex="-1" role="dialog" aria-labelledby="find-brokerTitle" aria-hidden="true">
<div class="modal-dialog modal-lg" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<?php echo do_shortcode('[contact-form-7 id="46927" title="Contact Our Team"]') ?>
</div>
</div>
</div>
</div>
<script>
jQuery(document).ready(function($) {
$('.find-a-broker-modal').on('click', function(e) {
e.preventDefault();
$('#find-broker-modal').modal('show');
});
$('.contact-modal').on('click', function(e) {
e.preventDefault();
$('#contact-team-modal').modal('show');
});
$('#find-broker-modal').css('visibility',' visible');
$('#contact-team-modal').css('visibility',' visible');
});
</script>
<?php wp_reset_query(); ?>
<?php get_footer(); ?>