-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheader.php
75 lines (64 loc) · 2.17 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<?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 Todd Productions Inc.
*/
?><!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>">
<meta name="viewport" content="width=device-width, initial-scale=1">
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<div id="page" class="site">
<div id="top-bar">
<div class="container">
<div class="d-inline mr-5">
<i class="fas fa-envelope"></i> <?php echo get_theme_mod('big_trees_email'); ?>
</div>
<div class="d-inline mr-5">
<i class="fas fa-phone"></i> <?php echo get_theme_mod('big_trees_phone'); ?>
</div>
<div class="d-inline social-icons">
<a href="<?php echo get_theme_mod('big_trees_fb'); ?>" target="_blank"><i class="fab fa-facebook-square"></i></a>
</div>
</div>
</div>
<header id="masthead" class="site-header" role="banner">
<div class="container">
<div class="row">
<div class="col-12 col-md-5">
<div class="logo">
<?php
echo '<a href="'.get_home_url().'" title="Home Page">';
?>
<div class="row">
<div class="col-auto">
<span class="tree-block"><i class="fas fa-tree"></i></span>
</div>
<div class="col">
<?php
echo bloginfo( 'name' ) . '<br/>';
?>
<span class="sub-logo"> <?php echo bloginfo( 'description' ); ?></span>
</div>
</div><!--row-->
<?php echo '</a>'; ?>
</div><!--logo-->
</div>
<div class="col-md col-12">
<nav id="site-navigation" class="main-navigation" role="navigation">
<div class="mobile-menu-button-container"><button class="menu-toggle btn btn-primary btn-block" aria-controls="primary-menu" aria-expanded="false"><i class="fas fa-bars"></i> <?php esc_html_e( 'Navigation', 'big_trees' ); ?></button></div>
<?php wp_nav_menu( array( 'theme_location' => 'menu-1', 'menu_id' => 'primary-menu' ) ); ?>
</nav><!-- #site-navigation -->
</div>
</div><!--row-->
</div><!--.container-->
</header><!-- #masthead -->
<div id="content" class="site-content">