-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathheader.php
42 lines (32 loc) · 1.48 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<?php
/**
* @package WordPress
* @subpackage Greyomatic
*/
?>
<!DOCTYPE html>
<html <?php language_attributes('xhtml') ?>>
<head>
<title><?php wp_title('«', true, 'right'); ?><?php bloginfo('name'); ?></title>
<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />
<link rel="shortcut icon" href="<?php echo home_url(); ?>/favicon.ico" />
<link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="<?php bloginfo('rss2_url'); ?>" />
<?php if ( is_singular() ) wp_enqueue_script( 'comment-reply' ); ?>
<?php wp_enqueue_script('jquery'); ?>
<?php wp_head(); ?>
<link rel="stylesheet" href="<?php echo get_template_directory_uri(); ?>/corners.css" type="text/css" media="screen" />
<script src="<?php echo get_template_directory_uri(); ?>/js/jquery.basic.js" type="text/javascript"></script>
<?php echo get_option('analytics_code'); ?>
</head>
<body <?php body_class(); ?>>
<div id="wrapper">
<h1 id="logo"><a class="extend" title="<?php bloginfo("title"); ?>" href="<?php echo home_url(); ?>" name="top"><img src="<?php echo get_template_directory_uri() ?>/images/logo.png" alt="<?php bloginfo("title"); ?>" /></a></h1>
<img src="<?php echo get_template_directory_uri() ?>/images/light.png" class="light" />
<div class="round">
<div id="body">
<div class="menu">
<ul>
<li><a class="home" href="<?php echo home_url(); ?>"><?php _e('Home','greyomatic'); ?></a></li>
<?php wp_list_pages('title_li=&depth=1'); ?>
</ul>
</div>