View difference between Paste ID: 5ybzxBbM and
SHOW: | | - or go back to the newest paste.
1-
1+
<?php
2
/**
3
 * The Header for our theme.
4
 *
5
 * Displays all of the <head> section and everything up till <div id="main">
6
 *
7
 * @package WordPress
8
 * @subpackage Starkers
9
 * @since Starkers 3.0
10
 */
11
?>
12
<!DOCTYPE html>
13
<html <?php language_attributes(); ?>>
14
<head>
15
<meta charset="<?php bloginfo( 'charset' ); ?>" />
16
<title><?php
17
	/*
18
	 * Print the <title> tag based on what is being viewed.
19
	 * We filter the output of wp_title() a bit -- see
20
	 * twentyten_filter_wp_title() in functions.php.
21
	 */
22
	wp_title( '|', true, 'right' );
23
24
	?></title>
25
<link rel="profile" href="http://gmpg.org/xfn/11" />
26
<link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo( 'stylesheet_url' ); ?>" />
27
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" />
28
29
<!-- Custom links -->
30
<!-- <link rel="stylesheet" type="text/css" href="http://mitemiu.com/wp-content/themes/Mitemiu/main.css" > -->
31
<link rel="stylesheet" type="text/css" href="http://mitemiu.com/wp-content/themes/Mitemiu/fonts/aller/stylesheet.css" >
32
<script type='text/javascript' src='http://mitemiu.com/wp-content/themes/Mitemiu/jquery-1.5.min.js'></script> 
33
<script type="text/javascript" src="http://mitemiu.com/wp-content/themes/Mitemiu/jquery.galleriffic.js"></script>
34
<script type='text/javascript' src='http://mitemiu.com/wp-content/themes/Mitemiu/mitemiu.js'></script> 
35
36
<?php
37
	/* We add some JavaScript to pages with the comment form
38
	 * to support sites with threaded comments (when in use).
39
	 */
40
	if ( is_singular() && get_option( 'thread_comments' ) )
41
		wp_enqueue_script( 'comment-reply' );
42
43
	/* Always have wp_head() just before the closing </head>
44
	 * tag of your theme, or you will break many plugins, which
45
	 * generally use this hook to add elements to <head> such
46
	 * as styles, scripts, and meta tags.
47
	 */
48
	wp_head();
49
?>
50
</head>
51
52
<body <?php body_class(); ?>>
53
    <div id="container">
54
        <div id="header">
55
			<div id="logo">
56
                <h1>
57
                    <a href="<?php echo home_url( '/' ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a>
58
                </h1>
59
            </div>
60
61
            <div id="access" role="navigation">
62
              <?php /*  Allow screen readers / text browsers to skip the navigation menu and get right to the good stuff */ ?>
63
                <?php /* Our navigation menu.  If one isn't filled out, wp_nav_menu falls back to wp_page_menu.  The menu assiged to the primary position is the one used.  If none is assigned, the menu with the lowest ID is used.  */ ?>
64
                <?php wp_nav_menu( array( 'container_class' => 'menu-header', 'theme_location' => 'primary' ) ); ?>
65
            </div><!-- #access -->
66
        </div>
67
        <div id="doll-menu">
68
            <ul id="fade">
69
                <li>  
70
                    <a href='http://mitemiu.com/cher' title='Cher' target=''>
71
                        <img class="menu-thumb" src="images/dolls/menu-thumbs/Cher.png" alt=""/>
72
                    </a> 
73
                </li>
74
                <li>  
75
                    <a href='http://mitemiu.com/kabuki' title='Kabuki' target=''>
76
                        <img class="menu-thumb" src="images/dolls/menu-thumbs/Kabuki.png" alt=""/>
77
                    </a> 
78
                </li>	
79
                <li>  
80
                    <a href='http://mitemiu.com/bizzy' title='Bizzy' target=''>
81
                        <img class="menu-thumb" src="images/dolls/menu-thumbs/Bizzy.png" alt=""/>
82
                    </a> 
83
                </li>
84
                <li>  
85
                    <a href='http://mitemiu.com/magi' title='Magi' target=''>
86
                        <img class="menu-thumb" src="images/dolls/menu-thumbs/Magi.png" alt=""/>
87
                    </a> 
88
                </li>
89
                <li>  
90
                    <a href='http://mitemiu.com/piotr' title='Piotr' target=''>
91
                        <img class="menu-thumb" src="images/dolls/menu-thumbs/Piotr.png" alt=""/>
92
                    </a> 
93
                </li>	
94
                 <li>  
95
                    <a href='http://mitemiu.com/whitey' title='Whitey' target=''>
96
                        <img class="menu-thumb" src="images/dolls/menu-thumbs/Whitey.png" alt=""/>
97
                    </a> 
98
                </li>
99
            </ul>
100
        </div>