-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathterms-and-conditions.php
More file actions
59 lines (46 loc) · 1.65 KB
/
Copy pathterms-and-conditions.php
File metadata and controls
59 lines (46 loc) · 1.65 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
<?php
/**
* Template Name: Terms and Conditions
*/
get_header();
?>
<!-- start wpo-page-title -->
<section class="wpo-page-title">
<div class="container">
<div class="row">
<div class="col col-xs-12">
<div class="wpo-breadcumb-wrap">
<h2>Terms and Conditions</h2>
<ol class="wpo-breadcumb-wrap">
<li><a href="<?php echo site_url(); ?>">Home</a></li>
<li>Terms and Conditions</li>
</ol>
</div>
</div>
</div> <!-- end row -->
</div> <!-- end container -->
</section>
<!-- end page-title -->
<!-- start wpo-blog-single-section -->
<section class="wpo-blog-single-section wpo-blog-single-left-sidebar-section section-padding">
<div class="container">
<div class="row">
<div class="col col-lg-10 col-12 offset-lg-1">
<div class="wpo-blog-content">
<div class="post format-standard-image">
<?php
if ( have_posts() ) :
while ( have_posts() ) : the_post();
the_content();
endwhile;
endif;
?>
</div>
</div>
</div>
</div>
</div> <!-- end container -->
</section>
<!-- end wpo-blog-single-section -->
</div>
<?php get_footer(); ?>