File: /homepages/29/d194883696/htdocs/clickandbuilds/MazeAccountants/wp-content/themes/convis/header.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 Convis
*/
use ConvisTheme\Classes\Convis_Helper as Helper;
?>
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="profile" href="https://gmpg.org/xfn/11">
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<?php wp_body_open(); ?>
<div id="convis-page" class="convis-body-content">
<?php
if ( 'enabled' === Helper::get_option( 'site_preloader', 'enabled' ) ) {
get_template_part( 'template-parts/preloader' );
}
if ( class_exists( 'Convis_Toolkit' ) ) {
do_action( "convis_builder_before_main" );
}
if ( 'enabled' === Helper::check_default_header() ) {
get_template_part( 'template-parts/header/header', 'default' );
}
?>
<main id="convis-content" class="convis-content-area">
<?php get_template_part( 'template-parts/page-title' ); ?>