page.tpl.php in Drupal 5
File
themes/garland/page.tpl.php
View source
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php
print $language;
?>" lang="<?php
print $language;
?>">
<head>
<?php
print $head;
?>
<title><?php
print $head_title;
?></title>
<?php
print $styles;
?>
<?php
print $scripts;
?>
<style type="text/css" media="print">@import "<?php
print base_path() . path_to_theme();
?>/print.css";</style>
<!--[if lt IE 7]>
<style type="text/css" media="all">@import "<?php
print base_path() . path_to_theme();
?>/fix-ie.css";</style>
<![endif]-->
</head>
<body<?php
print phptemplate_body_class($sidebar_left, $sidebar_right);
?>>
<!-- Layout -->
<div id="header-region" class="clear-block"><?php
print $header;
?></div>
<div id="wrapper">
<div id="container" class="clear-block">
<div id="header">
<div id="logo-floater">
<?php
$site_fields = array();
if ($site_name) {
$site_fields[] = check_plain($site_name);
}
if ($site_slogan) {
$site_fields[] = check_plain($site_slogan);
}
$site_title = implode(' ', $site_fields);
$site_fields[0] = '<span>' . $site_fields[0] . '</span>';
$site_html = implode(' ', $site_fields);
if ($logo || $site_title) {
print '<h1><a href="' . check_url($base_path) . '" title="' . $site_title . '">';
if ($logo) {
print '<img src="' . check_url($logo) . '" alt="' . $site_title . '" id="logo" />';
}
print $site_html . '</a></h1>';
}
?>
</div>
<?php
if (isset($primary_links)) {
?>
<?php
print theme('links', $primary_links, array(
'class' => 'links primary-links',
));
?>
<?php
}
?>
<?php
if (isset($secondary_links)) {
?>
<?php
print theme('links', $secondary_links, array(
'class' => 'links secondary-links',
));
?>
<?php
}
?>
</div> <!-- /header -->
<?php
if ($sidebar_left) {
?>
<div id="sidebar-left" class="sidebar">
<?php
if ($search_box) {
?><div class="block block-theme"><?php
print $search_box;
?></div><?php
}
?>
<?php
print $sidebar_left;
?>
</div>
<?php
}
?>
<div id="center"><div id="squeeze"><div class="right-corner"><div class="left-corner">
<?php
if ($breadcrumb) {
print $breadcrumb;
}
?>
<?php
if ($mission) {
print '<div id="mission">' . $mission . '</div>';
}
?>
<?php
if ($tabs) {
print '<div id="tabs-wrapper" class="clear-block">';
}
?>
<?php
if ($title) {
print '<h2' . ($tabs ? ' class="with-tabs"' : '') . '>' . $title . '</h2>';
}
?>
<?php
if ($tabs) {
print $tabs . '</div>';
}
?>
<?php
if (isset($tabs2)) {
print $tabs2;
}
?>
<?php
if ($help) {
print $help;
}
?>
<?php
if ($messages) {
print $messages;
}
?>
<?php
print $content;
?>
<span class="clear"></span>
<?php
print $feed_icons;
?>
<div id="footer"><?php
print $footer_message;
?></div>
</div></div></div></div> <!-- /.left-corner, /.right-corner, /#squeeze, /#center -->
<?php
if ($sidebar_right) {
?>
<div id="sidebar-right" class="sidebar">
<?php
if (!$sidebar_left && $search_box) {
?><div class="block block-theme"><?php
print $search_box;
?></div><?php
}
?>
<?php
print $sidebar_right;
?>
</div>
<?php
}
?>
</div> <!-- /container -->
</div>
<!-- /layout -->
<?php
print $closure;
?>
</body>
</html>