Advertisement
Guest User

header.php

a guest
Mar 30th, 2012
179
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 3.41 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>
  4. <meta http-equiv="content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />
  5. <meta name="generator" content="WordPress <?php bloginfo('version'); ?>" /> <!-- leave this for stats -->
  6. <title><?php bloginfo('name'); ?> <?php if ( is_single() ) { ?> ยป Archiwum bloga <?php } ?> <?php wp_title(); ?></title>
  7.     <link href="<?php bloginfo('template_url'); ?>/css/reset.css" rel="stylesheet" type="text/css" />
  8.     <link href="<?php bloginfo('template_url'); ?>/css/typo.css" rel="stylesheet" type="text/css" />
  9.     <link href="<?php bloginfo('template_url'); ?>/css/forms.css" rel="stylesheet" type="text/css" />
  10.     <link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" />
  11.     <link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="<?php bloginfo('rss2_url'); ?>" />
  12.     <link rel="alternate" type="text/xml" title="RSS .92" href="<?php bloginfo('rss_url'); ?>" />
  13.     <link rel="alternate" type="application/atom+xml" title="Atom 0.3" href="<?php bloginfo('atom_url'); ?>" />
  14.     <link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
  15.     <link rel="shortcut icon" href="<?php bloginfo('template_url'); ?>/images/favicon.png" type="image/x-icon" />
  16.  
  17.     <!--[if IE]>
  18.  
  19.     <link href="<?php bloginfo('template_url'); ?>/css/ie.css" rel="stylesheet" type="text/css">
  20.     <script type="text/javascript" src="wp-content/themes/jupiter/js/iepngfix_tilebg.js"></script>
  21.     <style type="text/css">
  22.         img, div, input, a, h2, h3, ul, li { behavior: url("wp-content/themes/jupiter/js/iepngfix.htc") }
  23.     </style>
  24.     <script type="text/javascript">
  25.     /* <![CDATA[ */
  26.     startList = function() {
  27.     if (document.all&&document.getElementById) {
  28.     navRoot = document.getElementById("nav");
  29.     for (i=0; i<navRoot.childNodes.length; i++) {
  30.     node = navRoot.childNodes[i];
  31.     if (node.nodeName=="LI") {
  32.     node.onmouseover=function() {
  33.     this.className+=" over";
  34.       }
  35.       node.onmouseout=function() {
  36.       this.className=this.className.replace(" over", "");
  37.        }
  38.        }
  39.       }
  40.      }
  41.     }
  42.     window.onload=startList;               
  43.  
  44.     /* ]]> */
  45.     </script>
  46.     <![endif]-->
  47.  
  48.     <script type="text/javascript">
  49.     /* <![CDATA[ */
  50.     function inputcheck(obj,mode){
  51.         if(mode=="focus"){
  52.         obj.value=''
  53.         }
  54.     }
  55.     /* ]]> */
  56.     </script>
  57.     <?php wp_get_archives('type=monthly&format=link'); ?>
  58.     <?php wp_head(); ?>
  59.  
  60. </head>
  61. <body>
  62. <div id="wrap">
  63.     <div class="inner_wrap">
  64.     <div class="header">
  65.         <a href="<?php bloginfo('url'); ?>" class="logo"><?php bloginfo('name'); ?></a>
  66.         <div class="description"><?php bloginfo('description'); ?></div>
  67.         <form method="get" class="search" id="searchform" action="<?php bloginfo('url'); ?>/">
  68.         <input class="seach_input" type="text" value="Szukaj" name="s" id="s" onfocus="javascript:inputcheck(this,'focus')" onblur="javascript:inputcheck(this,'blur')"/><input class="seach_submit" type="submit" value=" " />
  69.         </form>
  70.         <a href="<?php bloginfo('rss2_url'); ?>" class="rss">RSS</a>
  71.         <ul class="menu" id="nav">
  72.             <?php wp_list_pages('hide_empty=0&title_li='); ?>
  73.  
  74.         </ul>
  75.     </div>
  76. <?php include (ABSPATH . '/wp-content/plugins/wp-featured-content-slider/content-slider.php'); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement