-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
52 lines (47 loc) · 1.85 KB
/
footer.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
<footer class="o-section c-page-footer" role="contentinfo" itemscope itemtype="https://schema.org/WPFooter">
<div class="c-page-footer-upper">
<div class="o-wrapper-wide">
<div class="c-footer-columns">
<div class="c-footer-column">
<?php if ( is_active_sidebar( 'footer-1' ) ) : ?>
<?php dynamic_sidebar( 'footer-1' ); ?>
<?php endif; ?>
</div>
<div class="c-footer-column">
<?php if ( is_active_sidebar( 'footer-2' ) ) : ?>
<?php dynamic_sidebar( 'footer-2' ); ?>
<?php endif; ?>
</div>
<div class="c-footer-column">
<?php if ( is_active_sidebar( 'footer-3' ) ) : ?>
<?php dynamic_sidebar( 'footer-3' ); ?>
<?php endif; ?>
</div>
<div class="c-footer-column">
<?php if ( is_active_sidebar( 'footer-4' ) ) : ?>
<?php dynamic_sidebar( 'footer-4' ); ?>
<?php endif; ?>
</div>
</div>
<!-- /.c-footer-widgets -->
<!-- /.c-logo-copy-wrap -->
</div>
<!-- /.o-wrapper-wide -->
</div>
<div class="c-page-footer-lower">
<div class="o-wrapper-wider">
<div class="">
<p>CAUTION: The PULSE IVL™ System is in development. It is not yet cleared for commercial distribution in any country. Its future availability cannot be guaranteed.</p>
<div class="c-copywrite">
Copyright © <?php echo date('Y'); ?>. <?php bloginfo('name'); ?>. All rights reserved. <a href="/privacy-policy">Privacy Policy</a>
</div>
</div>
</div>
</div>
</footer>
<!-- /.c-page-footer -->
<?php // get_template_part( 'template-part/navigation/nav-modal' ); ?>
<!-- all js scripts are loaded in lib/gdt-enqueues.php -->
<?php wp_footer(); ?>
</body>
</html>