- 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
61 lines
1.2 KiB
PHP
61 lines
1.2 KiB
PHP
<?php
|
|
/**
|
|
* The header for our theme
|
|
*
|
|
* This is the template that displays all of the <head> section and everything up until <div id="content">
|
|
*
|
|
* @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
|
|
*
|
|
* @package kadence
|
|
*/
|
|
|
|
namespace Kadence;
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit;
|
|
}
|
|
|
|
?>
|
|
<!doctype html>
|
|
<html <?php language_attributes(); ?> class="no-js" <?php kadence()->print_microdata( 'html' ); ?>>
|
|
<head>
|
|
<meta charset="<?php bloginfo( 'charset' ); ?>">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1">
|
|
<?php wp_head(); ?>
|
|
</head>
|
|
|
|
<body <?php body_class(); ?>>
|
|
<?php wp_body_open(); ?>
|
|
<?php
|
|
/**
|
|
* Kadence before wrapper hook.
|
|
*/
|
|
do_action( 'kadence_before_wrapper' );
|
|
?>
|
|
<div id="wrapper" class="site wp-site-blocks">
|
|
<?php
|
|
/**
|
|
* Kadence before header hook.
|
|
*
|
|
* @hooked kadence_do_skip_to_content_link - 2
|
|
*/
|
|
do_action( 'kadence_before_header' );
|
|
|
|
/**
|
|
* Kadence header hook.
|
|
*
|
|
* @hooked Kadence/header_markup - 10
|
|
*/
|
|
do_action( 'kadence_header' );
|
|
|
|
do_action( 'kadence_after_header' );
|
|
?>
|
|
|
|
<main id="inner-wrap" class="wrap kt-clear" role="main">
|
|
<?php
|
|
/**
|
|
* Hook for top of inner wrap.
|
|
*/
|
|
do_action( 'kadence_before_content' );
|
|
?>
|