-
Notifications
You must be signed in to change notification settings - Fork 0
/
header.php
executable file
·49 lines (46 loc) · 1.9 KB
/
header.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<?php wp_head(); ?>
</head>
<body id="<?php print get_stylesheet(); ?>" <?php body_class(); ?>>
<?php do_action('body_top'); ?>
<?php
if (function_exists('wp_body_open')) {
wp_body_open();
} else {
do_action('wp_body_open');
} ?>
<a class="skip-content" href="#main"><?php esc_html_e('Skip to content', 'chosen'); ?></a>
<div id="overflow-container" class="overflow-container">
<div id="max-width" class="max-width">
<?php do_action('before_header'); ?>
<?php
// Elementor `header` location
if (! function_exists('elementor_theme_do_location') || ! elementor_theme_do_location('header')) :
?>
<header class="site-header" id="site-header" role="banner">
<div id="menu-primary-container" class="menu-primary-container">
<?php get_template_part('menu', 'primary'); ?>
<?php get_template_part('content/search-bar'); ?>
<?php ct_chosen_social_icons_output(); ?>
</div>
<button id="toggle-navigation" class="toggle-navigation" name="toggle-navigation" aria-expanded="false">
<span class="screen-reader-text"><?php echo esc_html_x('open menu', 'verb: open the menu', 'chosen'); ?></span>
<?php echo ct_chosen_svg_output('toggle-navigation'); ?>
</button>
<?php do_action('after_primary_menu'); ?>
<div id="title-container" class="title-container">
<?php get_template_part('logo') ?>
<?php if (get_bloginfo('description')) {
echo '<p class="tagline">' . esc_html(get_bloginfo('description')) . '</p>';
} ?>
</div>
</header>
<?php endif; ?>
<?php do_action('after_header'); ?>
<section id="main" class="main" role="main">
<?php do_action('main_top');
if (function_exists('yoast_breadcrumb')) {
yoast_breadcrumb('<p id="breadcrumbs">', '</p>');
}