-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage.tpl.php
62 lines (58 loc) · 1.75 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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="<?php print $language->language ?>" xml:lang="<?php print $language->language ?>" dir="<?php print $language->dir ?>">
<head>
<title><?php print $head_title ?></title>
<?php
drupal_add_feed('http://feeds.feedburner.com/pandionblog', t('Pandion Blog'));
drupal_add_feed('http://twitter.com/statuses/user_timeline/pandion.rss', t('Pandion Tweets'));
$head = drupal_get_html_head();
print $head;
?>
<?php print $styles ?>
<?php
$js = drupal_add_js('misc/jquery.js', 'core', 'header');
print drupal_get_js('header', $js);
?>
<!--[if lt IE 7]>
<script type="text/javascript" src="js/unitpngfix.js"></script>
<![endif]-->
</head>
<body>
<?php include "header.inc.php"; ?>
<!-- INNERPAGE CONTENT -->
<div id="innerpage-content" class="outer-wrapper">
<div class="inner-wrapper"><div class="inner-wrapperbg">
<div id="content-header">
<?php print $breadcrumb ?>
<h1><?php print $title ?></h1>
</div>
<div class="col-1">
<div id="content-wrapper">
<?php print $tabs ?>
<?php if ($show_messages && $messages): print $messages; endif; ?>
<?php print $help ?>
<?php print $mission ?>
<?php print $content_top; ?>
<?php print $content; ?>
<?php print $content_bottom; ?>
</div>
</div>
<div id="sidebars" class="col-2">
<?php if ($left): ?>
<div id="left-sidebar">
<?php print $left ?>
</div>
<?php endif; ?>
<?php if ($right): ?>
<div id="right-sidebar">
<?php print $right ?>
</div>
<?php endif; ?>
</div>
</div></div>
</div>
<!-- /INNERPAGE CONTENT -->
<?php include "footer.inc.php"; ?>
<?php print $closure ?>
</body>
</html>