-
Notifications
You must be signed in to change notification settings - Fork 0
/
header.php
39 lines (24 loc) · 1.01 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
<!DOCTYPE html>
<html <?php language_attributes( 'html' ); ?>>
<head <?php hybrid_attr( 'head' ); ?>>
<?php wp_head(); // Hook required for scripts, styles, and other <head> items. ?>
</head>
<body <?php hybrid_attr( 'body' ); ?>>
<div id="container">
<div class="skip-link">
<a href="#content" class="screen-reader-text"><?php esc_html_e( 'Skip to content', 'ubuntugnome' ); ?></a>
</div><!-- .skip-link -->
<header <?php hybrid_attr( 'header' ); ?>>
<div class="wrap">
<div <?php hybrid_attr( 'branding' ); ?>>
<?php ubuntugnome_the_site_logo(); ?>
<?php hybrid_site_title(); ?>
<?php hybrid_site_description(); ?>
</div><!-- #branding -->
<?php hybrid_get_menu( 'primary' ); // Loads the menu/secondary.php template. ?>
</div><!-- wrap -->
</header><!-- #header -->
<div class="header-image-container">
</div> <!-- .header-image-container -->
<div id="main" class="main">
<?php hybrid_get_menu( 'breadcrumbs' ); // Loads the menu/breadcrumbs.php template. ?>