-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplate-video-walkthrough.php
45 lines (42 loc) · 1.21 KB
/
template-video-walkthrough.php
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
<?php
/**
* Template Name: Video Walkthrough
**/
get_header();
?>
<h1 class="d-none">Ideal Group Project Videos</h1>
<div class="main_content">
<section class="breadcrumb_sec">
<div class="breadcrumb">
<?php the_field('bredcrumb');?>
</div>
</section>
<section class="content_top gallery_top">
<div class="about_content">
<div class="about_left">
<div class="ab_info">
<h2><?php the_field('heading');?></h2>
<h3><?php the_field('small_heading');?></h2></h3>
<p><?php the_field('description');?></p>
<div class="progress_gallery">
<?php the_field('photos');?>
</div>
</div>
</div>
<!-- side form start -->
<div class="side_form_container">
<span class="q_btn"><?php the_field('quick_query');?></span>
<div class="side_form">
<span class="sf_cross"><img src="<?php bloginfo('template_directory');?>/images/close2.png" alt=""></span>
<div class="sf_inn">
<?php echo do_shortcode('[contact-form-7 id="743" title="quick query form"]'); ?>
</div>
</div>
</div>
<!-- side form end -->
</div>
</section>
</div>
<?php
get_footer();
?>