70 lines
1.9 KiB
PHP
70 lines
1.9 KiB
PHP
<?php
|
|
/**
|
|
* The template for displaying the header.
|
|
*
|
|
* This is the template that displays all of the head section,
|
|
* the site branding (logo, title, description) and the main menu.
|
|
*
|
|
* @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
|
|
*
|
|
* @package Marianne
|
|
* @since Marianne 1.0
|
|
*/
|
|
|
|
?>
|
|
|
|
<!DOCTYPE html>
|
|
<html <?php language_attributes(); ?>>
|
|
<head>
|
|
<?php wp_head(); ?>
|
|
</head>
|
|
|
|
<?php
|
|
$marianne_body_class = ' color-scheme-' . esc_attr( marianne_get_theme_mod( 'colors_scheme' ) );
|
|
$marianne_body_class .= ' link-hover-' . esc_attr( marianne_get_theme_mod( 'colors_link_hover' ) );
|
|
|
|
if ( true === marianne_get_theme_mod( 'marianne_global_font_smooth' ) ) {
|
|
$marianne_body_class .= ' font-smooth';
|
|
}
|
|
|
|
if ( true === marianne_get_theme_mod( 'marianne_global_text_shadow' ) ) {
|
|
$marianne_body_class .= ' text-shadow';
|
|
}
|
|
?>
|
|
|
|
<body <?php body_class( $marianne_body_class ); ?>>
|
|
<?php
|
|
if ( function_exists( 'wp_body_open' ) ) {
|
|
wp_body_open();
|
|
}
|
|
?>
|
|
|
|
<a class="skip-link screen-reader-text" href="#content"><?php esc_html_e( 'Skip to content', 'marianne' ); ?></a>
|
|
|
|
<div id="page" class="site">
|
|
<?php
|
|
$marianne_header_class = 'site-header';
|
|
$marianne_header_class .= ' site-header-align-' . esc_attr( marianne_get_theme_mod( 'marianne_header_align' ) );
|
|
?>
|
|
|
|
<header id="header" <?php marianne_add_class( $marianne_header_class, false ); ?> role="banner">
|
|
<?php
|
|
$marianne_logo_class = 'site-logo';
|
|
|
|
if ( true === marianne_get_theme_mod( 'marianne_header_logo_round' ) ) {
|
|
$marianne_logo_class .= ' image-circular';
|
|
}
|
|
|
|
marianne_logo( $marianne_logo_class );
|
|
|
|
marianne_site_title();
|
|
|
|
marianne_site_description();
|
|
|
|
if ( 'header' === marianne_get_theme_mod( 'marianne_social_location' ) ) {
|
|
marianne_social_link( 'header' );
|
|
}
|
|
|
|
marianne_menu_primary();
|
|
?>
|
|
</header>
|