-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathheader.php
58 lines (50 loc) · 2.1 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
50
51
52
53
54
55
56
57
58
<?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 Foxtail
*/
?>
<!doctype html>
<html class="no-js" <?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(); ?>
<?php echo foxtail_seo(); ?>
</head>
<body <?php body_class(''); ?> data-blogname="<?php echo esc_attr(get_bloginfo('name', 'display')); ?>">
<div id="page" class="site">
<a class="skip-link screen-reader-text" href="#content"><?php _e('Skip to content', 'foxtail'); ?></a>
<header class="ft-c-header">
<div class="ft-c-header__toggle">
<div class="ft-c-hamburger"></div>
</div>
<div class="ft-c-header__logo">
<a href="<?php echo home_url() ?>">Mozilla</a>
</div>
<div class="ft-c-header__search ft-c-header__search--mobile">
<img class="ft-c-header__search-icon" src="<?php echo get_template_directory_uri() . '/assets/images/icons/search.svg' ?>" alt="search" />
</div>
<div id="nav" class="ft-c-header__nav">
<?php bem_menu('primary_menu', 'ft-c-primary-nav'); ?>
</div>
<div class="ft-c-header__cta-wrap">
<a id="nav-download"
href="https://www.mozilla.org/firefox/new/?utm_source=blog.mozilla.org&utm_medium=referral&utm_campaign=blog-nav"
rel="external" class="mzp-c-button mzp-t-product mzp-t-lg"><?php _e('Download Firefox', 'foxtail'); ?></a>
</div>
<div class="ft-c-header__search">
<img class="ft-c-header__search-icon" src="<?php echo get_template_directory_uri() . '/assets/images/icons/search.svg' ?>" alt="search" />
</div>
</header><!-- #masthead -->
<div class="ft-c-search">
<h4><?php _e('Search', 'foxtail'); ?></h4>
<?php get_search_form(); ?>
</div>
<div id="content" class="site-content">