equal
deleted
inserted
replaced
|
1 <?php |
|
2 /** |
|
3 * @package WordPress |
|
4 * @subpackage Theme_Compat |
|
5 * @deprecated 3.0 |
|
6 * |
|
7 * This file is here for Backwards compatibility with old themes and will be removed in a future version |
|
8 * |
|
9 */ |
|
10 _deprecated_file( sprintf( __( 'Theme without %1$s' ), basename(__FILE__) ), '3.0', null, sprintf( __('Please include a %1$s template in your theme.'), basename(__FILE__) ) ); |
|
11 ?> |
|
12 <!DOCTYPE html> |
|
13 <html xmlns="http://www.w3.org/1999/xhtml" <?php language_attributes(); ?>> |
|
14 |
|
15 <head profile="http://gmpg.org/xfn/11"> |
|
16 <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" /> |
|
17 |
|
18 <title><?php wp_title('«', true, 'right'); ?> <?php bloginfo('name'); ?></title> |
|
19 |
|
20 <link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" /> |
|
21 <link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" /> |
|
22 |
|
23 <style type="text/css" media="screen"> |
|
24 |
|
25 <?php |
|
26 // Checks to see whether it needs a sidebar |
|
27 if ( empty($withcomments) && !is_single() ) { |
|
28 ?> |
|
29 #page { background: url("<?php bloginfo('stylesheet_directory'); ?>/images/kubrickbg-<?php bloginfo('text_direction'); ?>.jpg") repeat-y top; border: none; } |
|
30 <?php } else { // No sidebar ?> |
|
31 #page { background: url("<?php bloginfo('stylesheet_directory'); ?>/images/kubrickbgwide.jpg") repeat-y top; border: none; } |
|
32 <?php } ?> |
|
33 |
|
34 </style> |
|
35 |
|
36 <?php if ( is_singular() ) wp_enqueue_script( 'comment-reply' ); ?> |
|
37 |
|
38 <?php wp_head(); ?> |
|
39 </head> |
|
40 <body <?php body_class(); ?>> |
|
41 <div id="page"> |
|
42 |
|
43 <div id="header" role="banner"> |
|
44 <div id="headerimg"> |
|
45 <h1><a href="<?php echo home_url(); ?>/"><?php bloginfo('name'); ?></a></h1> |
|
46 <div class="description"><?php bloginfo('description'); ?></div> |
|
47 </div> |
|
48 </div> |
|
49 <hr /> |