2024-01-09 16:13:20 +01:00
|
|
|
<?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
|
|
|
|
*
|
2024-01-13 15:46:11 +01:00
|
|
|
* @package Xarxaprod_theme
|
2024-01-09 16:13:20 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
?>
|
|
|
|
<footer id="colophon" class="site-footer">
|
|
|
|
<div class="site-info">
|
2024-02-22 12:44:46 +01:00
|
|
|
<?php dynamic_sidebar( 'footer-widgets' ); ?>
|
2024-01-09 16:13:20 +01:00
|
|
|
</div><!-- .site-info -->
|
|
|
|
</footer><!-- #colophon -->
|
|
|
|
</div><!-- #page -->
|
|
|
|
|
|
|
|
<?php wp_footer(); ?>
|
2024-04-11 13:29:14 +02:00
|
|
|
<div class="liquid-bubbles <?php xarxaprod_class_posttype(); ?>">
|
2024-02-02 12:59:57 +01:00
|
|
|
<div class="bubbles bubble-01"></div>
|
|
|
|
<div class="bubbles bubble-02"></div>
|
|
|
|
<div class="bubbles bubble-03"></div>
|
|
|
|
<div class="bubbles bubble-04"></div>
|
2024-02-02 00:53:19 +01:00
|
|
|
</div>
|
2024-01-09 16:13:20 +01:00
|
|
|
</body>
|
|
|
|
</html>
|