-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfooter.php
More file actions
34 lines (32 loc) · 823 Bytes
/
Copy pathfooter.php
File metadata and controls
34 lines (32 loc) · 823 Bytes
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
<?php
/**
* The template for displaying the footer
*
* @package Cielos
* @since Cielos 1.0.0
*/
?>
<!-- Navigation Control - Clean navigation functionality -->
<script src="<?php echo get_template_directory_uri(); ?>/nav-control.js" defer></script>
<div id="top"></div>
<div id="content-top"></div>
</div>
<div id="cielos-back-to-top" class="fixed bottom-4 right-4 z-50"></div>
<?php
/**
* Footer - load selected pattern
*/
$footer_pattern = get_theme_mod( 'cielos_footer_pattern', 'default' );
get_template_part( 'template-parts/footer', $footer_pattern );
?>
<?php if (get_theme_mod('wpt_mobile_menu_layout') === 'offcanvas' ) : ?>
<?php endif; ?>
<div id="app"></div>
<?php wp_footer(); ?>
<!-- <script src="https://unpkg.com/aos@next/dist/aos.js"></script>
<script>
AOS.init();
</script>
-->
</body>
</html>