-
Notifications
You must be signed in to change notification settings - Fork 0
/
page.tpl.php
84 lines (78 loc) · 2.57 KB
/
page.tpl.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
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<?php
print '<html xmlns="http://www.w3.org/1999/xhtml" lang="'.$language->language.'" xml:lang="'.$language->language.'" dir="'.$language->dir.'">';
?>
<head>
<title><?php print $head_title ?></title>
<?php print $head ?>
<?php print $styles ?>
<?php print $scripts ?>
<script type="text/javascript"><?php /* Needed to avoid Flash of Unstyle Content in IE */ ?> </script>
</head>
<body>
<table border="0" cellpadding="0" cellspacing="0" id="header">
<tr>
<td style="width:225px; height:129px; padding:0px;" id="logo">
<?php if ($logo) { ?>
<a href="<?php print $front_page ?>" title="<?php print t('Home') ?>"><img src="<?php print $logo ?>" alt="<?php print t('Home') ?>" /></a>
<?php } ?>
</td>
<td style="color:white; text-align:left; background-color:black;" id="menu">
<?php
print theme('links', $primary_links, array('class' => 'links', 'id' => 'subnavlist'));
if (in_array('root', array_values($user->roles)))
print theme('links', $secondary_links, array('class' => 'links', 'id' => 'subnavlist'));
?>
</td>
</tr>
<tr>
<td colspan="2"><div><?php print $header ?></div></td>
</tr>
</table>
<table border="0" cellpadding="0" cellspacing="0" id="content">
<tr>
<?php if ($left) { ?>
<td style="background-color:#dddaec;" id="sidebar-left">
<div style="position:absolute; left:93px;">
<img src="/sites/all/themes/drupal-gentoo-theme/gridtest.gif" />
</div>
<br /><br /><br /><br /><br /><br />
<?php print $left ?>
</td>
<?php } ?>
<td valign="top">
<?php if ($mission) { ?>
<div id="mission"><?php print $mission ?></div>
<?php } ?>
<div id="main">
<?php print $breadcrumb ?>
<h1 class="title"><?php print $title ?></h1>
<div class="tabs"><?php print $tabs ?></div>
<?php
if ($show_messages)
print $messages;
print $help;
print $content;
print $feed_icons;
?>
</div>
</td>
<?php if ($right) { ?>
<td id="sidebar-right"><?php print $right ?></td>
<?php } ?>
</tr>
</table>
<div id="footer">
<?php print $footer ?>
<?php print $footer_message ?>
<script src="http://www.google-analytics.com/urchin.js" type="text/javascript">
</script>
<script type="text/javascript">
_uacct = "UA-381722-2";
urchinTracker();
</script>
<!-- #here footer -->
</div>
<?php print $closure ?>
</body>
</html>