-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpage-cookie-policy.php
56 lines (47 loc) · 1.48 KB
/
page-cookie-policy.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
46
47
48
49
50
51
52
53
54
55
56
<?php
// Template name: cookie-policy
?>
<!-- Include Header -->
<?php get_header(); ?>
<!-- Loop in the template -->
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<!-- === Section Breadcrumbs === -->
<?php breadcrumbs(); ?>
<!-- === MODAL INSURANCE TYPES === -->
<?php echo do_shortcode('[merlin-dialler-modal-list]'); ?>
<!-- === FORM === -->
<?php echo do_shortcode('[merlin-dialler-form]'); ?>
<section class="s-title">
<div class="container">
<h1><?php wp_title('') ?></h1>
</div>
</section>
<section class="s-page-text">
<div class="container">
<div class="left-page-text">
<!-- Blog Structure based on WordPress -->
<div class="content-post">
<?php the_content(); ?>
</div>
</div>
<div class="right-page-text">
<!-- Table of Content -->
<div class="table-of-content">
<h5 class="table-of-content-title">Table of Content</h5>
<!-- Top Navigation -->
<ul class="js-nav-template-text">
</ul>
<a href="https://www.facebook.com/sharer.php?u=<?php the_permalink(); ?>" target="_blank">
<button>
<img src="<?php echo get_template_directory_uri()?>/assets/icons/icon-share-arrow.svg" alt="icon share arrow" title="icon share arrow">
<span>Share</span>
</button>
</a>
</div>
</div>
</div>
</section>
<!-- End loop -->
<?php endwhile; else: endif; ?>
<!-- Include Footer -->
<?php get_footer(); ?>