-
Notifications
You must be signed in to change notification settings - Fork 0
/
header.php
28 lines (26 loc) · 1.16 KB
/
header.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />
<title><?php wp_title('«', true, 'right'); bloginfo( 'name' ); ?></title>
<link rel="stylesheet" href="<?php bloginfo('template_url'); ?>/style/style.css" type="text/css" media="screen" />
<link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
<link rel="shortcut icon" href="<?php bloginfo('template_url'); ?>/images/favicon.png" />
<?php if ( is_singular() ) wp_enqueue_script( 'comment-reply' ); ?>
<?php if (!is_admin()) { wp_enqueue_script('html5_shim'); } ?>
<script>var yogurt = "<?php bloginfo('template_url')?>";</script>
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<div id="upside_down">
<?php img("upside_down.png") ?>
</div>
<header id="header">
<div>
<a href="<?php echo home_url(); ?>/">
<?php img("zybnet-console.png") ?>
</a>
</div>
<?php wp_nav_menu( array( 'container_class' => 'menu-header',
'theme_location' => 'navigation', 'menu_class' => 'ribbon') ); ?>
</header>