-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.php
More file actions
38 lines (30 loc) · 1.11 KB
/
header.php
File metadata and controls
38 lines (30 loc) · 1.11 KB
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
<?php
/**
* The header.
*
* This is the template that displays all of the <head> section and everything up until main.
*
* @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
*
* @package CoderDojo
* @subpackage CoderDojo
* @since 1.0.0
*/
?>
<!doctype html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<?php wp_head();?>
</head>
<body <?php body_class();?>>
<header id="site-header" class="header">
<div id="header-wrapper" class="wrapper">
<?php get_template_part('template-parts/site/branding'); ?>
<?php get_template_part('template-parts/header/desktop-navigation'); ?>
<?php get_template_part('template-parts/header/call-to-action'); ?>
<button id="mobile-menu-toggle" class="toggle-button" onclick="toggleMobileMenu()">☰</button>
</div>
<?php get_template_part('template-parts/header/mobile-navigation'); ?>
</header>