| 1 | <?php |
|---|
| 2 | /** |
|---|
| 3 | * The Header |
|---|
| 4 | * |
|---|
| 5 | * Displays all of the <head> section and everything up till <main> |
|---|
| 6 | * |
|---|
| 7 | * @package Fluida |
|---|
| 8 | */ |
|---|
| 9 | ?><!DOCTYPE html> |
|---|
| 10 | <html <?php language_attributes(); ?>> |
|---|
| 11 | <head> |
|---|
| 12 | <?php cryout_meta_hook(); ?> |
|---|
| 13 | <meta charset="<?php bloginfo( 'charset' ); ?>"> |
|---|
| 14 | <link rel="profile" href="http://gmpg.org/xfn/11"> |
|---|
| 15 | <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>"> |
|---|
| 16 | <?php |
|---|
| 17 | cryout_header_hook(); |
|---|
| 18 | wp_head(); |
|---|
| 19 | ?> |
|---|
| 20 | </head> |
|---|
| 21 | |
|---|
| 22 | <body <?php body_class(); cryout_schema_microdata('body');?>> |
|---|
| 23 | <?php cryout_body_hook(); ?> |
|---|
| 24 | <header id="header" <?php cryout_schema_microdata('header') ?>> |
|---|
| 25 | <nav id="mobile-menu"> |
|---|
| 26 | <span id="nav-cancel"><i class="icon-cancel"></i></span> |
|---|
| 27 | <?php cryout_mobilemenu_hook(); ?> |
|---|
| 28 | </nav> |
|---|
| 29 | <div id="header-inside"> |
|---|
| 30 | <div id="branding" role="banner" > |
|---|
| 31 | <div id="branding-inside"> |
|---|
| 32 | <div id="header-container"> |
|---|
| 33 | <?php cryout_branding_hook();?> |
|---|
| 34 | |
|---|
| 35 | <a id="nav-toggle"><span> </span></a> |
|---|
| 36 | <nav id="access" role="navigation" aria-label="Primary Menu" <?php cryout_schema_microdata('menu'); ?>> |
|---|
| 37 | <?php cryout_access_hook();?> |
|---|
| 38 | </nav><!-- #access --> |
|---|
| 39 | |
|---|
| 40 | </div><!-- #header-container --> |
|---|
| 41 | </div><!-- #branding-inside --> |
|---|
| 42 | <?php cryout_headerimage_hook(); ?> |
|---|
| 43 | </div><!-- #branding --> |
|---|
| 44 | </div><!-- #header-inside --> |
|---|
| 45 | </header><!-- #header --> |
|---|
| 46 | |
|---|
| 47 | <?php cryout_breadcrumbs_hook();?> |
|---|
| 48 | |
|---|
| 49 | <div id="content"> |
|---|
| 50 | <?php cryout_main_hook(); ?> |
|---|
| 51 | |
|---|