This repository has been archived by the owner on Jan 24, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
header.php
58 lines (52 loc) · 1.67 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.
*
* Displays all of the <head> section and everything up till <div id="content">
*
* @package Fiera
*/
?><!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="http://gmpg.org/xfn/11">
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>">
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<div class="offcanvas">
<ul class="main-nav">
<?php
global $fiera_data;
$nav_items = array();
if ( isset( $fiera_data['sections'] ) && isset( $fiera_data['sections']['nav_items'] ) ) {
$nav_items = $fiera_data['sections']['nav_items'];
}
$navigation = fiera_nav_menu( $nav_items );
echo $navigation; // WPCS: XSS OK.
?>
</ul>
</div><!-- /.offcanvas -->
<div class="site-wrap">
<header class="header">
<div class="container">
<div class="row">
<div class="col-xs-12">
<div class="header__content">
<div class="site-branding">
<h1 class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home" class="site-title__link"><?php bloginfo( 'name' ); ?></a></h1><!-- /.site-title -->
<p class="site-description"><?php bloginfo( 'description' ); ?></p>
</div>
<ul class="main-nav hidden-xs">
<?php echo $navigation; // WPCS: XSS OK. ?>
</ul>
<button class="offcanvas-toggle visible-xs-inline-block">
<i class="fa fa-bars"></i>
</button>
</div>
</div><!-- /.col -->
</div><!-- /.row -->
</div><!-- /.container -->
</header><!-- /.header -->