Last active
July 5, 2019 20:54
-
-
Save skorasaurus/2bd62f721481cbd600762698f7fc6158 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html <?php language_attributes(); ?>> | |
<head> | |
<?php cryout_meta_hook(); ?> | |
<meta http-equiv="content-type" content="text/html; charset=<?php bloginfo( 'charset' ); ?>" /> | |
<link rel="profile" href="http://gmpg.org/xfn/11" /> | |
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" /> | |
<link rel="stylesheet" href="https://use.typekit.net/hmm8egp.css"> | |
<?php | |
cryout_header_hook(); | |
wp_head(); ?> | |
<link rel='stylesheet' id='custom' href='<?php echo get_stylesheet_directory_uri(); ?>/stylesheets/main.css' type='text/css' media='screen' /> | |
</head> | |
<body <?php body_class(); ?>> | |
<?php cryout_body_hook(); ?> | |
<div id="wrapper" class="hfeed"> | |
<?php cryout_wrapper_hook(); ?> | |
<header role="banner"> | |
<a class="screen-reader-text skip-link" href="#content">Skip to content</a> | |
<div class="l-top"> | |
<div class="l-contained l-contained--top"> | |
<div class="l-top-left"> | |
<div class="block--cpl-branding"> | |
<a href="/" title="home" rel="home"><img src="<?php echo esc_url( get_stylesheet_directory_uri() ); ?>/images/logo.svg" alt="cleveland public library"></a> | |
</div> | |
<div class="mobile--cpl-branding"> | |
<a href="/" title="home" rel="home"><img src="<?php echo esc_url( get_stylesheet_directory_uri() ); ?>/images/logo-45x.png" alt="cleveland public library"></a> | |
</div> | |
</div> <!-- l-top-left --> | |
<div class="l-top-right"> | |
<?php cryout_header_widgets_hook(); ?> | |
</div> <!-- l-top-right --> | |
</div> <!--l-contained l-contained--top--> | |
<div class="l-nav-container"> | |
<div class="l-contained"> | |
<div class="l-nav"> | |
<a class="menu-toggle"><i class="fa fa-bars" aria-hidden="true"></i><i class="fa fa-times" aria-hidden="true"></i></a> | |
<nav role="navigation"> | |
<ul class="menu"> | |
<li class="menu-item active"><a href="<?php echo esc_url( get_site_url() ); ?>"><span>the</span> library</a> | |
<?php | |
// the main menu | |
wp_nav_menu( array( | |
'menu' => 'home', | |
'menu_class' => 'primary-menu', | |
) ); | |
?> | |
<li class="menu-item"><a href="https://150.cpl.org/"><span>CPL</span>150</a></li> | |
</ul> | |
</nav> | |
</div> <!-- l-nav --> | |
</div> <!-- l-contained --> | |
<div class="l-search"> | |
<button class="cpl-button" data-a11y-dialog-show="my-accessible-dialog">SEARCHY</button> | |
</div> <!-- l-search --> | |
</div> <!-- l-nav-container --> | |
</div> <!-- l-top --> | |
</header> | |
</div> <!-- wrapper --> | |
<div class="dialog" id="my-accessible-dialog"> | |
<div class="dialog-overlay" tabindex="-1" data-a11y-dialog-hide></div> | |
<dialog class="dialog-content" aria-labelledby="dialogTitle" aria-describedby="dialogDescription"> | |
<button type="button" data-a11y-dialog-hide class="dialog-close" aria-label="Close this dialog window">×</button> | |
<div class="dialogTile"> why i outta </div> | |
<div class="dialogDescription"> description </div> | |
<?php get_search_form(); | |
?> | |
</dialog> | |
</div> <!-- my accessible dialog- --> | |
<div style="clear:both;height:0;"> </div> | |
<div id="main"> | |
<?php cryout_main_hook(); ?> | |
<div id="forbottom" > | |
<?php cryout_forbottom_hook(); ?> | |
<div style="clear:both;"> </div> | |
<?php cryout_breadcrumbs_hook(); ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment