Files
acrib.es/wp-content/themes/kadence/template-parts/footer/footer-widget2.php
Malin f3ff7b7186 feat: initial ACRIB WordPress deployment
- 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
2026-05-19 19:25:59 +02:00

26 lines
1.6 KiB
PHP

<?php
/**
* Template part for displaying the footer info
*
* @package kadence
*/
namespace Kadence;
$align = ( kadence()->sub_option( 'footer_widget2_align', 'desktop' ) ? kadence()->sub_option( 'footer_widget2_align', 'desktop' ) : 'default' );
$tablet_align = ( kadence()->sub_option( 'footer_widget2_align', 'tablet' ) ? kadence()->sub_option( 'footer_widget2_align', 'tablet' ) : 'default' );
$mobile_align = ( kadence()->sub_option( 'footer_widget2_align', 'mobile' ) ? kadence()->sub_option( 'footer_widget2_align', 'mobile' ) : 'default' );
$valign = ( kadence()->sub_option( 'footer_widget2_vertical_align', 'desktop' ) ? kadence()->sub_option( 'footer_widget2_vertical_align', 'desktop' ) : 'default' );
$tablet_valign = ( kadence()->sub_option( 'footer_widget2_vertical_align', 'tablet' ) ? kadence()->sub_option( 'footer_widget2_vertical_align', 'tablet' ) : 'default' );
$mobile_valign = ( kadence()->sub_option( 'footer_widget2_vertical_align', 'mobile' ) ? kadence()->sub_option( 'footer_widget2_vertical_align', 'mobile' ) : 'default' );
?>
<div class="footer-widget-area widget-area site-footer-focus-item footer-widget2 content-align-<?php echo esc_attr( $align ); ?> content-tablet-align-<?php echo esc_attr( $tablet_align ); ?> content-mobile-align-<?php echo esc_attr( $mobile_align ); ?> content-valign-<?php echo esc_attr( $valign ); ?> content-tablet-valign-<?php echo esc_attr( $tablet_valign ); ?> content-mobile-valign-<?php echo esc_attr( $mobile_valign ); ?>" data-section="sidebar-widgets-footer2">
<div class="footer-widget-area-inner site-info-inner">
<?php
dynamic_sidebar( 'footer2' );
?>
</div>
</div><!-- .footer-widget2 -->