Advertisement
lberelson

Site 1 - header

Jul 23rd, 2013
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.25 KB | None | 0 0
  1. <?php
  2. /*
  3. * The Header
  4. *
  5. * Displays all of the <head> section and everything up til <div id="container 12">
  6. *
  7. */
  8. ?>
  9.  
  10. <!DOCTYPE html>
  11. <html>
  12.  
  13. <head>
  14.  
  15. <title> <?php bloginfo('name') | wp_title(); ?> </title>
  16. <link href="<?php bloginfo('stylesheet_url'); ?>" rel="stylesheet" type="text/css"/>
  17.  
  18. <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"></head>
  19.  
  20. <body>
  21.  
  22. <div class="contain_wider">
  23. <div class="bannerOverlay">
  24. <div id="Top_right">
  25. <p class="tagline1" style="margin-right:15px"> <?php bloginfo('description'); ?></p>
  26. <!-- <p class="tagline2">Buy American. Hire a taxpayer.&nbsp;&nbsp;</p> -->
  27. <p class="subtag"><strong>New Construction &amp; <br>Commercial
  28. Building Restoration</strong></p>
  29. <p class="contact"><strong>phone: 347-928-8536
  30. </strong>
  31. <!-- &nbsp;&middot;&nbsp;&nbsp;617-990-4310 (c) --></p>
  32. </div>
  33. </div>
  34. </div>
  35.  
  36.  
  37. <div class="container container_12" style="margin-top:35px;">
  38.  
  39. <!-- navbar -->
  40. <div class="grid_12 devbg" style="background-color:#fff;">
  41.  
  42. <div id="navlist" >
  43. <ul id="menu" style="margin-left: 4em;">
  44.  
  45. <?php wp_nav_menu( array( 'primary' ) ); ?>
  46.  
  47.  
  48. </ul>
  49. </div>
  50. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement