-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheader.php
58 lines (42 loc) · 1.2 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.
*
* @package Compass
* @subpackage HybridCore
* @copyright Copyright (c) 2015, Flagship Software, LLC
* @license GPL-2.0+
* @since 1.0.0
*/
?>
<!DOCTYPE html>
<?php tha_html_before(); ?>
<html <?php language_attributes( 'html' ); ?>>
<head>
<?php tha_head_top(); ?>
<?php wp_head(); ?>
<?php tha_head_bottom(); ?>
</head>
<body <?php hybrid_attr( 'body' ); ?>>
<?php tha_body_top(); ?>
<div <?php hybrid_attr( 'site-container' ); ?>>
<div class="skip-link">
<a href="#content" class="button screen-reader-text">
<?php _e( 'Skip to content (Press enter)', 'compass' ); ?>
</a>
</div><!-- .skip-link -->
<?php tha_header_before(); ?>
<header <?php hybrid_attr( 'header' ); ?>>
<div <?php hybrid_attr( 'wrap', 'header' ); ?>>
<?php tha_header_top(); ?>
<div <?php hybrid_attr( 'branding' ); ?>>
<?php flagship_the_logo(); ?>
<?php hybrid_site_title(); ?>
<?php hybrid_site_description(); ?>
</div><!-- #branding -->
<?php hybrid_get_menu( 'primary' ); ?>
<?php tha_header_bottom(); ?>
</div>
</header><!-- #header -->
<?php tha_header_after(); ?>
<?php hybrid_get_menu( 'secondary' ); ?>