Advertisement
Guest User

Untitled

a guest
Sep 8th, 2011
243
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.91 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.  
  5. <link rel="shortcut icon" href="<?php bloginfo('stylesheet_directory'); ?>/favicon.ico" />
  6. <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />
  7. <title><?php wp_title('&laquo;', true, 'right'); ?> <?php bloginfo('name'); ?></title>
  8.  
  9. <link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo( 'stylesheet_url' ); ?>" />
  10. <script type="text/javascript" src="<?php bloginfo('template_directory'); ?>/js/jquery-1.4.2.min.js"></script>
  11. <script type="text/javascript" src="<?php bloginfo('template_directory'); ?>/js/jquery.form.js"></script>
  12. <script type="text/javascript" src="<?php bloginfo('template_directory'); ?>/js/jquery.lightbox-0.5.min.js"></script>
  13. <script type="text/javascript" src="<?php bloginfo('template_directory'); ?>/javascript/custom.js"></script>
  14. <script type="text/javascript" src="<?php bloginfo('template_directory'); ?>/js/cufon-yui.js"></script>
  15. <script type="text/javascript" src="<?php bloginfo('template_directory'); ?>/js/Century_Gothic_400-Century_Gothic_700.font.js"></script>
  16.  
  17.  
  18.  
  19.  
  20. <!-- Cufon init -->
  21. <script type="text/javascript">
  22. <?php if(get_option('alltuts_cufon')!="no"):?>
  23. Cufon.replace('h1',{hover: true})('h2')('h3')('.stepcarousel .panel .caption .title');
  24. <?php endif ?>
  25. </script>
  26. <!-- lightbox initialize script -->
  27. <script type="text/javascript">
  28. $(function() {
  29. $('a.lightbox').lightBox();
  30. });
  31. </script>
  32. <!-- drop down top menu init -->
  33. <script type="text/javascript">
  34. ddsmoothmenu.init({
  35. mainmenuid: "topMenu", //menu DIV id
  36. orientation: 'h', //Horizontal or vertical menu: Set to "h" or "v"
  37. classname: 'ddsmoothmenu', //class added to menu's outer DIV
  38. //customtheme: ["#1c5a80", "#18374a"],
  39. contentsource: "markup" //"markup" or ["container_id", "path_to_menu_file"]
  40. })
  41.  
  42. </script>
  43.  
  44.  
  45. <link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
  46. <?php wp_get_archives('type=monthly&format=link'); ?>
  47. <?php //comments_popup_script(); // off by default ?>
  48. <?php wp_head(); ?>
  49.  
  50.  
  51. </head>
  52.  
  53. <body>
  54. <!-- Begin #wrapper -->
  55. <div id="wrapper">
  56. <!-- Begin #header -->
  57. <div id="header">
  58.  
  59. <!-- Top Menu start -->
  60.  
  61. <?php wp_nav_menu( array('container' => 'div', 'container_class' => 'jqueryslidemenu', 'container_id' => 'menu', 'walker' => new description_walker() )); ?>
  62.  
  63. <div id="top_social"><a href="http://www.twitter.com/zoomingjapan" target="_blank"><img src="http://zoomingjapan.com/wp-content/themes/alltuts/images/top_twitter.png" border=0 title="Follow me on Twitter" ></a> <a href="http://feeds.feedburner.com/ZoomingJapan" target="_blank"><img src="http://zoomingjapan.com/wp-content/themes/alltuts/images/top_rss.png" border=0 title="Suscribe to my Feedburner" ></a> <a href="http://feedburner.google.com/fb/a/mailverify?uri=ZoomingJapan" target="_blank"><img src="http://zoomingjapan.com/wp-content/themes/alltuts/images/top_suscribe.png" border=0 title="Suscribe via E-Mail" ></a></div>
  64.  
  65. <!-- Top Menu end -->
  66.  
  67. <div class="breadcrumbs">
  68. <?php
  69. if(function_exists('bcn_display'))
  70. {
  71. bcn_display();
  72. }
  73. ?>
  74. </div>
  75. <script type="text/javascript">
  76. function SelectAll(id)
  77. {
  78. document.getElementById(id).focus();
  79. document.getElementById(id).select();
  80. }
  81. </script>
  82. <!-- BEGIN TOP SEARCH -->
  83. <div id="topSearch">
  84. <form id="searchform" action="<?php bloginfo('url'); ?>/" method="get">
  85. <input type="submit" value="" id="searchsubmit"/>
  86. <input type="text" class="field" name="s" id="s" value="Search or be lost" onfocus="this.value=''">
  87.  
  88. </form>
  89. </div>
  90. <!-- END TOP SEARCH -->
  91.  
  92.  
  93.  
  94. </div>
  95. <!-- End #header -->
  96.  
  97. <!-- Begin #content -->
  98. <div id="content" class="clearfix">
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement