Advertisement
Guest User

Untitled

a guest
Apr 21st, 2012
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.94 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head profile="http://gmpg.org/xfn/11">
  4. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  5. <title><?php bloginfo('name'); ?> <?php bloginfo('description'); ?> </title>
  6. <link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" />
  7. <link rel="shortcut icon" href="" type="image" />
  8. <link rel="alternate" type="application/rss+xml" title="<?php bloginfo('name'); ?> RSS Feed" href="<?php bloginfo('rss2_url'); ?>" />
  9. <link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
  10. <?php
  11. global $options;
  12. foreach ($options as $value) {
  13. if (get_settings( $value['id'] ) === FALSE) { $$value['id'] = $value['std']; }
  14. else { $$value['id'] = stripslashes(get_settings( $value['id'] )); }
  15. } ?>
  16. <?php if ( is_singular() ) wp_enqueue_script( 'comment-reply' ); ?>
  17. <?php wp_head(); ?>
  18. </head>
  19. <body>
  20. <a name="top"></a>
  21. <div id="header">
  22. <div id="topbar"><strong><a href="<?php bloginfo('url'); ?>" class="title"><?php bloginfo('name'); ?></a></strong> <?php bloginfo('description'); ?></div>
  23. <div><table border="0" cellpadding="0" cellspacing="0" id="banner">
  24. <tbody>
  25. <tr>
  26. <td>
  27. <?php if ($takte_headerimage_toggle=="Toggle On") : ?>
  28. <a href="/"><img src="http://nerdykibbles.net/wp-content/uploads/2012/04/pawprintlogo.png" width="643" height="410" alt=Paw Prints" style="border: none;" />
  29. </a>
  30.  
  31. <?php endif; ?>
  32. <?php if ($takte_headertext_toggle=="Toggle On") : ?>
  33. <h1><?php echo $takte_headertext; ?></h1>
  34. <?php endif; ?>
  35. <?php if ($takte_headerimage_toggle=="Toggle On" && $takte_headertext_toggle=="Toggle On") : ?>
  36. <style type="text/css">#banner h1 { margin-top: 20px; }</style>
  37. <?php endif; ?>
  38. </td>
  39. </tr>
  40. </tbody>
  41. </table></div>
  42. </div>
  43. <div id="contentwrap">
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement