HEX
Server: Apache/2.4.58 (Ubuntu)
System: Linux ns3133907 6.8.0-86-generic #87-Ubuntu SMP PREEMPT_DYNAMIC Mon Sep 22 18:03:36 UTC 2025 x86_64
User: cssnetorguk (1024)
PHP: 8.2.28
Disabled: NONE
Upload Files
File: //home/cga.org.uk/public_html/wp-content/themes/blogzee/footer.php
<?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 Blogzee Pro
 */
use Blogzee\CustomizerDefault as BZ;
require get_template_directory() . '/builder/footer-builder.php';
use Blogzee_Builder as BB;

	/**
	 * Hook - blogzee_before_footer_hook
	 */
	if( has_action( 'blogzee_before_footer_hook' ) ) do_action( 'blogzee_before_footer_hook' );

	$footer_builder_section_width = BZ\blogzee_get_customizer_option( 'footer_builder_section_width' );
	$footerClass = 'site-footer dark_bk';
	$footerClass .= ' ' . $footer_builder_section_width;
	?>
		<footer id="colophon" class="<?php echo esc_attr( $footerClass ); ?>">
			<div class="blogzee-container">
				<div class="row">
					<?php
						new BB\Footer_Builder_Render();
					?>
				</div>
			</div>
		</footer><!-- #colophon -->

		<?php
			/**
			 * hook - blogzee_animation_hook
			 * 
			 * hooked - blogzee_get_background_and_cursor_animation
			 */
			if( has_action( 'blogzee_animation_hook' ) ) do_action( 'blogzee_animation_hook' );
		?>
	</div><!-- #page -->

<?php wp_footer(); ?>

</body>
</html>