-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpage.php
33 lines (28 loc) · 853 Bytes
/
page.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
<?php
get_header();
the_post();
?>
<main>
<?php get_template_part('template-parts/common/page', 'header'); ?>
<!-- Start FAQ Area -->
<section class="faq-area-inner pt-5">
<div class="container">
<div class="row">
<div class="col-12">
<div class="faq-wrapper-inner mb-130">
<?php
if(has_post_thumbnail()) {
the_post_thumbnail('large', array('class'=>'img-fluid mb-5'));
}
the_content();
?>
</div>
</div>
</div>
</div>
</section>
<!-- End FAQ Area -->
<?php get_template_part('template-parts/common/page-contact', 'form'); ?>
</main>
<?php
get_footer();