Make WordPress Themes

source: fluida/1.2.0/header.php

Last change on this file was 68687, checked in by themedropbox, 9 years ago

New version of Fluida - 1.2.0

File size: 1.6 KB
Line 
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
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="blicon-cross3"></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                                <?php cryout_header_socials_hook();?>
40
41                                <a id="nav-toggle"><span>&nbsp;</span></a>
42                                <nav id="access" role="navigation"  aria-label="Primary Menu" <?php cryout_schema_microdata( 'menu' ); ?>>
43                                        <?php cryout_access_hook();?>
44                                </nav><!-- #access -->
45
46                        </div><!-- #site-header-main-inside -->
47                </div><!-- #site-header-main -->
48
49                <div id="header-image-main">
50                        <div id="header-image-main-inside">
51                                <?php cryout_headerimage_hook(); ?>
52                        </div><!-- #header-image-main-inside -->
53                </div><!-- #header-image-main -->
54
55        </header><!-- #masthead -->
56
57        <?php cryout_breadcrumbs_hook();?>
58
59        <div id="content" class="cryout">
60                <?php cryout_main_hook(); ?>
Note: See TracBrowser for help on using the repository browser.