- WordPress 6.9.4 (es_ES) with Kadence theme - Homepage: Hero, La Asociación, Pilares, Beneficios, Eventos, Miembros, Hazte Miembro, Contacto - Brand identity: #13294b navy, #a12932 burgundy, #c69c48 gold - Fonts: Raleway (headings) + Source Sans 3 (body) + Lato (UI) - Plugins: Kadence Blocks, Polylang, Contact Form 7 - Custom CSS with full brand styling and responsive layout - HTTPS enforced via wp-config.php proxy detection
41 lines
725 B
PHP
41 lines
725 B
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 kadence
|
|
*/
|
|
|
|
namespace Kadence;
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit;
|
|
}
|
|
|
|
/**
|
|
* Hook for bottom of inner wrap.
|
|
*/
|
|
do_action( 'kadence_after_content' );
|
|
?>
|
|
</main><!-- #inner-wrap -->
|
|
<?php
|
|
do_action( 'kadence_before_footer' );
|
|
/**
|
|
* Kadence footer hook.
|
|
*
|
|
* @hooked Kadence/footer_markup - 10
|
|
*/
|
|
do_action( 'kadence_footer' );
|
|
|
|
do_action( 'kadence_after_footer' );
|
|
?>
|
|
</div><!-- #wrapper -->
|
|
<?php do_action( 'kadence_after_wrapper' ); ?>
|
|
|
|
<?php wp_footer(); ?>
|
|
</body>
|
|
</html>
|