2010-05-03 11:57:24 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Theme_Compat
|
2016-07-06 14:40:29 +02:00
|
|
|
* @deprecated 3.0.0
|
2010-10-19 09:48:22 +02:00
|
|
|
*
|
2016-05-13 20:41:31 +02:00
|
|
|
* This file is here for backward compatibility with old themes and will be removed in a future version.
|
2010-05-03 11:57:24 +02:00
|
|
|
*/
|
2015-10-30 11:39:25 +01:00
|
|
|
_deprecated_file(
|
2019-09-03 02:41:05 +02:00
|
|
|
/* translators: %s: Template name. */
|
2015-10-30 11:39:25 +01:00
|
|
|
sprintf( __( 'Theme without %s' ), basename( __FILE__ ) ),
|
2016-07-06 14:40:29 +02:00
|
|
|
'3.0.0',
|
2015-10-30 11:39:25 +01:00
|
|
|
null,
|
2019-09-03 02:41:05 +02:00
|
|
|
/* translators: %s: Template name. */
|
2015-10-30 11:39:25 +01:00
|
|
|
sprintf( __( 'Please include a %s template in your theme.' ), basename( __FILE__ ) )
|
|
|
|
);
|
2010-05-03 11:57:24 +02:00
|
|
|
?>
|
2011-07-22 02:25:41 +02:00
|
|
|
<!DOCTYPE html>
|
2020-06-22 23:26:16 +02:00
|
|
|
<html <?php language_attributes(); ?>>
|
2014-03-25 18:22:15 +01:00
|
|
|
<head>
|
2020-07-04 01:42:01 +02:00
|
|
|
<link rel="profile" href="https://gmpg.org/xfn/11" />
|
2017-12-01 00:11:00 +01:00
|
|
|
<meta http-equiv="Content-Type" content="<?php bloginfo( 'html_type' ); ?>; charset=<?php bloginfo( 'charset' ); ?>" />
|
2010-05-03 11:57:24 +02:00
|
|
|
|
2015-10-20 18:21:25 +02:00
|
|
|
<title><?php echo wp_get_document_title(); ?></title>
|
2010-05-03 11:57:24 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
<link rel="stylesheet" href="<?php bloginfo( 'stylesheet_url' ); ?>" type="text/css" media="screen" />
|
|
|
|
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" />
|
2010-05-03 11:57:24 +02:00
|
|
|
|
2015-05-12 12:47:29 +02:00
|
|
|
<?php if ( file_exists( get_stylesheet_directory() . '/images/kubrickbgwide.jpg' ) ) { ?>
|
2010-05-03 11:57:24 +02:00
|
|
|
<style type="text/css" media="screen">
|
|
|
|
|
2018-08-17 03:51:36 +02:00
|
|
|
<?php
|
2020-01-29 01:45:18 +01:00
|
|
|
// Checks to see whether it needs a sidebar.
|
2018-08-17 03:51:36 +02:00
|
|
|
if ( empty( $withcomments ) && ! is_single() ) {
|
|
|
|
?>
|
2017-12-01 00:11:00 +01:00
|
|
|
#page { background: url("<?php bloginfo( 'stylesheet_directory' ); ?>/images/kubrickbg-<?php bloginfo( 'text_direction' ); ?>.jpg") repeat-y top; border: none; }
|
2020-01-29 01:45:18 +01:00
|
|
|
<?php } else { // No sidebar. ?>
|
2017-12-01 00:11:00 +01:00
|
|
|
#page { background: url("<?php bloginfo( 'stylesheet_directory' ); ?>/images/kubrickbgwide.jpg") repeat-y top; border: none; }
|
2010-05-03 11:57:24 +02:00
|
|
|
<?php } ?>
|
|
|
|
|
|
|
|
</style>
|
2015-05-12 12:47:29 +02:00
|
|
|
<?php } ?>
|
2010-05-03 11:57:24 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
<?php
|
|
|
|
if ( is_singular() ) {
|
|
|
|
wp_enqueue_script( 'comment-reply' );}
|
|
|
|
?>
|
2010-05-03 11:57:24 +02:00
|
|
|
|
|
|
|
<?php wp_head(); ?>
|
|
|
|
</head>
|
|
|
|
<body <?php body_class(); ?>>
|
|
|
|
<div id="page">
|
|
|
|
|
|
|
|
<div id="header" role="banner">
|
|
|
|
<div id="headerimg">
|
2017-12-01 00:11:00 +01:00
|
|
|
<h1><a href="<?php echo home_url(); ?>/"><?php bloginfo( 'name' ); ?></a></h1>
|
|
|
|
<div class="description"><?php bloginfo( 'description' ); ?></div>
|
2010-05-03 11:57:24 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<hr />
|