| 1 | <?php |
|---|
| 2 | /** |
|---|
| 3 | * The Header |
|---|
| 4 | * |
|---|
| 5 | * Displays all of the <head> section and everything up till <main> |
|---|
| 6 | * |
|---|
| 7 | * @package Anima |
|---|
| 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 | <div id="site-wrapper"> |
|---|
| 25 | <header id="masthead" class="cryout" <?php cryout_schema_microdata( 'header' ) ?> role="banner"> |
|---|
| 26 | |
|---|
| 27 | <div id="site-header-main"> |
|---|
| 28 | <div id="site-header-main-inside"> |
|---|
| 29 | |
|---|
| 30 | <nav id="mobile-menu"> |
|---|
| 31 | <span id="nav-cancel"><i class="icon-cancel"></i></span> |
|---|
| 32 | <?php cryout_mobilemenu_hook(); ?> |
|---|
| 33 | </nav> <!-- #mobile-menu --> |
|---|
| 34 | |
|---|
| 35 | <div id="branding"> |
|---|
| 36 | <?php cryout_branding_hook();?> |
|---|
| 37 | </div><!-- #branding --> |
|---|
| 38 | |
|---|
| 39 | <div id="sheader-container"> |
|---|
| 40 | <?php cryout_header_socials_hook();?> |
|---|
| 41 | </div> |
|---|
| 42 | |
|---|
| 43 | <a id="nav-toggle"><i class="icon-menu"></i></a> |
|---|
| 44 | <nav id="access" role="navigation" aria-label="<?php esc_attr_e( 'Primary Menu', 'anima' ) ?>" <?php cryout_schema_microdata( 'menu' ); ?>> |
|---|
| 45 | <?php cryout_access_hook();?> |
|---|
| 46 | </nav><!-- #access --> |
|---|
| 47 | |
|---|
| 48 | </div><!-- #site-header-main-inside --> |
|---|
| 49 | </div><!-- #site-header-main --> |
|---|
| 50 | |
|---|
| 51 | <div id="header-image-main"> |
|---|
| 52 | <div id="header-image-main-inside"> |
|---|
| 53 | <?php cryout_headerimage_hook(); ?> |
|---|
| 54 | </div><!-- #header-image-main-inside --> |
|---|
| 55 | </div><!-- #header-image-main --> |
|---|
| 56 | |
|---|
| 57 | </header><!-- #masthead --> |
|---|
| 58 | <?php if ( ! anima_header_title_check() ) cryout_breadcrumbs_hook(); ?> |
|---|
| 59 | <div id="content" class="cryout"> |
|---|
| 60 | <?php cryout_main_hook(); ?> |
|---|