/usr/share/drupal6/themes/arthemia/page.tpl.php is in drupal6-thm-arthemia 2.0-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 | <?php
// $Id: page.tpl.php,v 1.10 2010/02/18 04:56:31 nbz Exp $
?>
<!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->language ?>" dir="<?php print $language->dir ?>">
<head>
<title><?php print $head_title ?></title>
<?php print $head ?>
<?php print $styles ?>
<?php print $scripts ?>
</head>
<body>
<div id="head" class="clearfloat">
<div class="clearfloat">
<div id="logo">
<?php if ($logo || $site_name) {
print '<a href="'. check_url($base_path) .'" title="'. $site_name .'">';
if ($logo) {
print '<img src="'. check_url($logo) .'" alt="'. $site_name .'" />';
} else {
print '<span id="sitename">'. $site_name .'</span>';
}
print '</a>';
}
?>
<?php if ($site_slogan): print '<div id="tagline">'. $site_slogan .'</div>'; endif; ?>
</div>
<?php if ($banner): ?>
<div id="banner-region">
<?php print $banner; ?>
</div>
<?php endif; ?>
</div>
<div id="navbar" class="clearfloat">
<div id="menu-bar">
<?php if ($menu_region): ?>
<?php print $menu_region; ?>
<?php elseif (isset($primary_links)): {
print arthemia_primary($primary_links);
} ?>
<?php endif; ?>
</div>
<?php if ($search_box): ?>
<div id="searchform"><?php print $search_box; ?></div>
<?php endif; ?>
</div>
</div>
<div id="page" class="clearfloat">
<?php if ($headline): ?>
<div id="top" class="clearfloat">
<div id="headline" class="<?php print empty($featured)? 'no' : 'with'?>-featured">
<?php print $headline; ?>
</div>
<?php if ($featured): ?>
<div id="featured">
<?php print $featured; ?>
</div>
<?php endif; ?>
</div>
<?php endif; ?>
<?php if ($middle):?>
<div id="middle" class="clearfloat">
<?php print $middle; ?>
</div>
<?php endif; ?>
<div id="content" class="main-content <?php print arthemia_body_class($sidebar_primary, $sidebar_secondary)?>">
<?php if ($content_top): ?>
<div id="content-top">
<?php print $content_top; ?>
</div>
<?php endif; ?>
<?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 "<h1". ($tabs ? " class='with-tabs'" : "") .">". $title ."</h1>"; } ?>
<?php if ($tabs) { print $tabs ."</div>"; } ?>
<?php if (isset($tabs2)) { print $tabs2; } ?>
<?php if ($help) { print $help; } ?>
<?php if ($show_messages && $messages) { print $messages; } ?>
<?php print $content; ?>
<?php if ($content_bottom): ?>
<div id="content-bottom">
<?php print $content_bottom; ?>
</div>
<?php endif; ?>
</div>
<?php if ($sidebar_primary):?>
<div id="sidebar-primary" class="sidebar">
<?php print $sidebar_primary; ?>
</div>
<?php endif; ?>
<?php if ($sidebar_secondary):?>
<div id="sidebar-secondary" class="sidebar">
<?php print $sidebar_secondary; ?>
</div>
<?php endif; ?>
<?php if ($bottom):?>
<div id="bottom">
<?php print $bottom; ?>
</div>
<?php endif; ?>
</div>
<div id="footer-region" class="clearfloat">
<div id="triptych-first" class="clearfloat">
<?php print $triptych_first; ?>
</div>
<div id="triptych-second" class="clearfloat">
<?php print $triptych_second; ?>
</div>
<div id="triptych-third" class="clearfloat">
<?php print $triptych_third; ?>
</div>
</div>
<div id="footer-message">
<?php print $footer_message; ?>
</div>
<?php print $closure; ?>
</body>
</html>
|