forked from mlteal/bluegreen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
43 lines (37 loc) · 956 Bytes
/
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
<?php
/**
* The template for displaying the footer
*
* Contains the closing of the #content div and all content after.
*
* @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
*
* @package VIAME Toolkit WP
*/
$footer_text = get_theme_mod( 'viame_footer_text', '');
?>
</div><!-- #content -->
<footer id="colophon" class="site-footer" role="contentinfo">
<div class="container">
<div class="has-text-centered py-5">
<div class="site-info">
<?php echo $footer_text; ?>
</div><!-- .site-info -->
</div>
</div><!-- .container -->
</footer><!-- #colophon -->
</div><!-- #page -->
<?php wp_footer(); ?>
</body>
<?php if( is_front_page() ) : ?>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bulma-carousel.min.js"></script>
<script>
bulmaCarousel.attach('.carousel', {
pagination: 1,
slidesToScroll: 1,
slidesToShow: 3,
loop: true
});
</script>
<?php endif; ?>
</html>