Advertisement
Guest User

Vita 1.6 header.php

a guest
Nov 12th, 2010
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.92 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" <?php language_attributes(); ?>>
  3. <head profile="http://gmpg.org/xfn/11">
  4. <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />
  5. <title>
  6. <?php if ( function_exists('optimal_title') ) { optimal_title('|'); bloginfo('name'); } else { bloginfo('name'); wp_title('|'); } ?>
  7. <?php if ( is_home() ) { ?>
  8. |
  9. <?php bloginfo('description'); } ?>
  10. </title>
  11. <meta name="generator" content="WordPress <?php bloginfo('version'); ?>" />
  12. <!-- leave this for stats -->
  13. <link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" />
  14. <link rel="alternate" type="application/rss+xml" title="<?php bloginfo('name'); ?> RSS Feed" href="<?php bloginfo('rss2_url'); ?>" />
  15. <link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
  16.  
  17. <?php if ( is_singular() ) wp_enqueue_script( 'comment-reply' ); ?>
  18.  
  19. <link rel="shortcut icon" href="<?php bloginfo('template_url'); ?>/favicon.ico" />
  20.  
  21. <?php wp_head(); ?>
  22. <link rel="stylesheet" href="<?php bloginfo('template_directory'); ?>/css-navi.css" type="text/css" />
  23.  
  24. </head>
  25. <body>
  26. <div id="top">
  27. <div id="navr">
  28. <ul class="menu">
  29. <li <?php if(is_home()){echo 'class="current_page_item"';}?>><a href="<?php bloginfo('siteurl'); ?>/" title="Home">Home</a></li>
  30. <?php wp_list_pages('sort_column=menu_order&depth=1&title_li='); ?>
  31. <?php wp_register('<li class="admintab">','</li>'); ?>
  32. </ul>
  33. </div>
  34. </div>
  35. <div id="page">
  36. <div id="pager">
  37. <div id="headr">
  38. <div class="description">
  39. <?php bloginfo('description'); ?>
  40. </div>
  41. </div>
  42. </div>
  43. <div id="splash">
  44. <h1><a href="<?php echo get_option('home'); ?>/">
  45. <?php bloginfo('name'); ?>
  46. </a></h1>
  47. </div>
  48. <hr />
  49. <div id="sub-page">
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement