Thank you for signing up for a free copy of Chapter Five, from Liespotting “Listening to the Words”. You’ll receive an email with a download link for the PDF at the address you provided.
<?php /** * The Header for our theme. * * Displays all of the <head> section and everything up till <div id="main"> * * @package WordPress * @subpackage Twenty_Ten * @since Twenty Ten 1.0 */ ?><!DOCTYPE html> <html <?php language_attributes(); ?>> <head> <meta charset="<?php bloginfo( 'charset' ); ?>" /> <title> <?php // Returns the title based on what is being viewed if ( is_single() ) { // single posts single_post_title(); echo ' | '; bloginfo( 'name' ); // The home page or, if using a static front page, the blog posts page. } elseif ( is_home() || is_front_page() ) { bloginfo( 'name' ); if( get_bloginfo( 'description' ) ) echo ' | ' ; bloginfo( 'description' ); twentyten_the_page_number(); } elseif ( is_page() ) { // WordPress Pages single_post_title( '' ); echo ' | '; bloginfo( 'name' ); } elseif ( is_search() ) { // Search results printf( __( 'Search results for %s', 'twentyten' ), '"'.get_search_query().'"' ); twentyten_the_page_number(); echo ' | '; bloginfo( 'name' ); } elseif ( is_404() ) { // 404 (Not Found) _e( 'Not Found', 'twentyten' ); echo ' | '; bloginfo( 'name' ); } else { // Otherwise: wp_title( '' ); echo ' | '; bloginfo( 'name' ); twentyten_the_page_number(); } ?> </title> <link rel="profile" href="http://gmpg.org/xfn/11" /> <link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo( 'stylesheet_url' ); ?>?v=1" /> <!--[if IE 7]><link rel="stylesheet" type="text/css" href="<?php echo home_url( 'wp-content/themes/newliespotting/ie7.css' ); ?>?v=1" /><![endif]--> <!--[if IE 6]><link rel="stylesheet" type="text/css" href="<?php echo home_url( 'wp-content/themes/newliespotting/ie6.css' ); ?>?v=1" /><![endif]--> <!--[if IE]> <style type="text/css" media="screen"> #access ul ul { background: #fff; margin: 0 8px; width: 145px; } #access ul ul li { background:#000; margin:0px 0px 2px; padding:0; -moz-border-radius:3px; -webkit-border-radius:3px; } </style> <![endif]--> <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" /> <?php if (is_page(1303)): ?> <meta name="robots" content="noindex, nofollow"> <?php endif; ?> <?php /* We add some JavaScript to pages with the comment form * to support sites with threaded comments (when in use). */ if ( is_singular() && get_option( 'thread_comments' ) ) wp_enqueue_script( 'comment-reply' ); /* Always have wp_head() just before the closing </head> * tag of your theme, or you will break many plugins, which * generally use this hook to add elements to <head> such * as styles, scripts, and meta tags. */ wp_head(); ?> <?php if (is_home() || $_SERVER['REQUEST_URI'] == '/' || $_SERVER['REQUEST_URI'] == '/index.php' || $_SERVER['REQUEST_URI'] == '/index.html') { echo '<meta name="robots" content="noarchive" />'; } ?> <!-- <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script> --> <script type="text/javascript"> (function($){ $(document).ready(function() { $('.controls li a').click(function() { ind = $(this).parent().index(); $(this).parent().addClass('active').siblings().removeClass('active'); $($('.slides li').get(ind)).fadeIn(500).siblings().fadeOut(200); return false; }); $('.slides li').not(':first').hide(); $('.controls li:first').addClass('active'); $("div.menu li:first-child").css("background-image", "none") }); })(jQuery); </script> <script type="text/javascript"> var _gaq = _gaq || []; _gaq.push(['_setAccount', 'UA-16981984-1']); _gaq.push(['_trackPageview']); (function() { var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); })(); </script> <script type="text/javascript" charset="utf-8"> jQuery(document).ready(function() { jQuery("a").filter(function() { return this.hostname && this.hostname !== location.hostname; }).attr('target', '_blank'); }); </script> </head> <body <?php body_class(); ?>> <div id="top"></div> <div id="wrapper" class="hfeed"> <div id="header"> <div id="masthead"> <div id="branding" role="banner"> <a href="<?php echo home_url( '/' ); ?>" id="site-title"></a> </div><!-- #branding --> <div id="icons"> <a href="http://www.facebook.com/pages/Liespotting/117404921630607?ref=search&sid=1151202476.3137050156..1" target="_blank"><img src="/wp-content/themes/newliespotting/images/facebook16.png" width="16" height="16" alt="Facebook" class="social" > Facebook</a> <a href="http://twitter.com/Pamela_Meyer" target="_blank"><img src="/wp-content/themes/newliespotting/images/twitter_16.png" class="social" width="16" height="16" alt="Twitter" > Twitter</a> <a href="http://www.linkedin.com/in/pamelameyer" target="_blank"><img src="/wp-content/themes/newliespotting/images/linkedin_16.png" width="16" height="16" alt="LinkedIn" class="last" >LinkedIn</a> </div><!-- #icons --> <div id="access" role="navigation"> <?php include('bc/wp-content/themes/newliespotting/languages/func-links.php'); ?> <?php /* Allow screen readers / text browsers to skip the navigation menu and get right to the good stuff */ ?> <div class="skip-link screen-reader-text"><a href="#content" title="<?php esc_attr_e( 'Skip to content', 'twentyten' ); ?>"><?php _e( 'Skip to content', 'twentyten' ); ?></a></div> <?php /* Our navigation menu. If one isn't filled out, wp_nav_menu falls back to wp_page_menu. The menu assiged to the primary position is the one used. If none is assigned, the menu with the lowest ID is used. */ ?> <?php // original themers were using wp_nav_menu, but not actually utilizing it...so I rolled it back to wp_page_menu for better ease of use. wp_page_menu('menu_class=menu&exclude=1303,398,228,1017,426'); ?> </div><!-- #access --> </div><!-- #masthead --> </div><!-- #header -->
Thank you for signing up for a free copy of Chapter Five, from Liespotting “Listening to the Words”. You’ll receive an email with a download link for the PDF at the address you provided.