1. <!DOCTYPE html>
  2. <html <?php language_attributes(); ?>>
  3.  
  4. <head>
  5.     <meta charset="<?php bloginfo('charset'); ?>" />
  6.    
  7.     <?php if (is_search()) { ?>
  8.        <meta name="robots" content="noindex, nofollow" />
  9.     <?php } ?>
  10.  
  11.     <title>
  12.            <?php
  13.               if (function_exists('is_tag') && is_tag()) {
  14.                  single_tag_title("Tag Archive for &quot;"); echo '&quot; - '; }
  15.               elseif (is_archive()) {
  16.                  wp_title(''); echo ' Archive - '; }
  17.               elseif (is_search()) {
  18.                  echo 'Search for &quot;'.wp_specialchars($s).'&quot; - '; }
  19.               elseif (!(is_404()) && (is_single()) || (is_page())) {
  20.                  wp_title(''); echo ' - '; }
  21.               elseif (is_404()) {
  22.                  echo 'Not Found - '; }
  23.               if (is_home()) {
  24.                  bloginfo('name'); echo ' - '; bloginfo('description'); }
  25.               else {
  26.                   bloginfo('name'); }
  27.               if ($paged>1) {
  28.                  echo ' - page '. $paged; }
  29.            ?>
  30.     </title>
  31.    
  32.     <link rel="shortcut icon" href="/favicon.ico">
  33.    
  34.     <link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>">
  35.    
  36.     <link rel="pingback" href="<?php bloginfo('pingback_url'); ?>">
  37.  
  38.     <?php if ( is_singular() ) wp_enqueue_script('comment-reply'); ?>
  39.  
  40.     <?php wp_head(); ?>
  41. </head>
  42.  
  43. <body <?php body_class(); ?>>
  44.    
  45.     <div id="page-wrap">
  46.     <header>
  47.         <div id="a5-header">
  48.             <div id="logo"><a href="index.php"><img src="http://www.webtechbydesign.com/images/logo-try-3.png" width="297" height="114" alt="Web Tech By Design logo"></a>
  49.             </div>
  50.                        
  51.             <div id="headerText" class="description"><h1><?php bloginfo('description'); ?></h1>
  52.             </div>
  53.            
  54.             <nav>
  55.                     <div id="a5-menu-box"> 
  56.                         <?php wp_nav_menu(array('menu'=>'Main Navigation Menu')); ?>
  57.                     </div>
  58.             </nav>
  59.            
  60.             <div id="promises-list">
  61.                     <p id="personal">Personal and Professional Websites</p>
  62.                     <p id="modern">Modern Designs</p>
  63.                     <p id="affordable">Affordable Maintenance</p>
  64.             </div>
  65.            
  66.             <div id="questions-answered-list">
  67.             <h3 class="redHeading">What can a well designed, and good looking website do for you?</h3>
  68.             <ul id="answers-list">
  69.                 <li>Make your business stand out from the crowd.</li>
  70.                 <li>Make your site easy for visitors to navigate and use.</li>
  71.                 <li>Enhance your business reputation.</li>
  72.                 <li>Define your brand and make it easy to remember.</li>
  73.             </ul>
  74.             </div>
  75.            
  76.         </div>
  77.     </header>