SHOW:
|
|
- or go back to the newest paste.
| 1 | <!DOCTYPE html> | |
| 2 | ||
| 3 | <!--[if lt IE 7 ]> <html <?php language_attributes(); ?> class=" ie6"> <![endif]--> | |
| 4 | <!--[if IE 7 ]> <html <?php language_attributes(); ?> class="ie7"> <![endif]--> | |
| 5 | <!--[if (gt IE 7)|!(IE)]><!--> <html <?php language_attributes(); ?>> <!--<![endif]--> | |
| 6 | <head> | |
| 7 | <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />
| |
| 8 | <meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0;" /> | |
| 9 | <title><?php wp_title('|', true, 'right'); ?> <?php bloginfo('name'); ?> <?php if ( !wp_title('', true, 'left') ); { ?> | <?php bloginfo('description'); ?> <?php } ?></title>
| |
| 10 | <link rel="stylesheet" type="text/css" href="<?php bloginfo('stylesheet_url'); ?>" media="screen" />
| |
| 11 | <?php wp_head(); ?> | |
| 12 | </head> | |
| 13 | ||
| 14 | <body <?php body_class(); ?> > | |
| 15 | ||
| 16 | <div id="canvas"> | |
| 17 | <?php $options = get_option( 'grisaille_theme_options' ); ?> | |
| 18 | ||
| 19 | <div class="social-media"> | |
| 20 | <?php if ( $options['twitterurl'] != '' ) : ?> | |
| 21 | <a href="<?php echo $options['twitterurl']; ?>" class="twitter"><?php _e( 'Twitter', 'grisaille' ); ?></a> | |
| 22 | <?php endif; ?> | |
| 23 | ||
| 24 | <?php if ( $options['facebookurl'] != '' ) : ?> | |
| 25 | <a href="<?php echo $options['facebookurl']; ?>" class="facebook"><?php _e( 'Facebook', 'grisaille' ); ?></a> | |
| 26 | <?php endif; ?> | |
| 27 | ||
| 28 | <?php if ( $options['googleplusurl'] != '' ) : ?> | |
| 29 | <a href="<?php echo $options['googleplusurl']; ?>" class="googleplus"><?php _e( 'Google +', 'grisaille' ); ?></a> | |
| 30 | <?php endif; ?> | |
| 31 | ||
| 32 | ||
| 33 | <?php if ( ! $options['hiderss'] ) : ?> | |
| 34 | <a href="<?php bloginfo( 'rss2_url' ); ?>" class="rss"><?php _e( 'RSS Feed', 'grisaille' ); ?></a> | |
| 35 | <?php endif; ?> | |
| 36 | </div><!-- #social-icons--> | |
| 37 | ||
| 38 | ||
| 39 | ||
| 40 | <ul class="skip"> | |
| 41 | <li><a href=".menu"><?php _e( 'Skip to navigation', 'grisaille' ); ?></a></li> | |
| 42 | <li><a href="#primaryContent"><?php _e( 'Skip to main content', 'grisaille' ); ?></a></li> | |
| 43 | <li><a href="#secondaryContent"><?php _e( 'Skip to secondary content', 'grisaille' ); ?></a></li> | |
| 44 | <li><a href="#footer"><?php _e( 'Skip to footer', 'grisaille' ); ?></a></li> | |
| 45 | </ul> | |
| 46 | ||
| 47 | <div id="header-wrap"> | |
| 48 | <div id="header"> | |
| 49 | <?php $header_image = get_header_image(); | |
| 50 | if ( ! empty( $header_image ) ) : ?> | |
| 51 | - | <div id="site-title" class="grisaille-header-image"> |
| 51 | + | <div id="site-title" class=""> |
| 52 | <img src="/wp-content/uploads/2012/10/copy-cropped-oots___lineup_by_tensen01-1.jpg" alt="" /> | |
| 53 | ||
| 54 | <?php else: ?> | |
| 55 | <div id="site-title"> | |
| 56 | <?php endif; ?> | |
| 57 | <h1><a href="<?php echo home_url(); ?>"><?php bloginfo('name'); ?></a></h1>
| |
| 58 | <div id="site-description"><?php bloginfo( 'description' ); ?></div> | |
| 59 | </div> | |
| 60 | ||
| 61 | ||
| 62 | </div> <!-- end #header--> | |
| 63 | <!--by default your pages will be displayed unless you specify your own menu content under Menu through the admin panel--> | |
| 64 | <div id="top-menu"> <?php wp_nav_menu( array('theme_location' => 'main', 'sort_column' => 'menu_order', 'container_class' => 'menu-header' ) ); ?></div>
| |
| 65 | ||
| 66 | </div> <!-- end #header-wrap--> | |
| 67 | ||
| 68 | ||
| 69 | <div id="primaryContent"> |