This repository was archived by the owner on Sep 9, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpage.tpl.php
More file actions
73 lines (66 loc) · 2.64 KB
/
page.tpl.php
File metadata and controls
73 lines (66 loc) · 2.64 KB
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
<!DOCTYPE html>
<html lang="<?php print $language->language ?>">
<head>
<meta charset="utf-8">
<title><?php print $head_title ?></title>
<meta http-equiv="Content-Style-Type" content="text/css" />
<?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>
<div id="container">
<div id="header">
<?php if ($site_name): ?>
<h1 class='site-name'><a href="<?php print $base_path ?>" title="<?php print t('Home') ?>"><?php print $site_name ?></a></h1>
<?php endif; ?>
<?php if ($logo): ?>
<a href="<?php print $base_path ?>" title="<?php print t('Home') ?>">
<img src="<?php print $logo ?>" alt="The Association for Computers and the Humanities" id="logo" />
</a>
<?php endif; ?>
<?php if (isset($primary_links)) : ?><?php print theme('nice_menus_primary_links') ?><?php endif; ?>
<div id="courtesy-bar">
<?php if ($search_box) : echo $search_box; endif; ?>
<?php if (isset($secondary_links)) : ?><?php print theme('links', $secondary_links, array('class' =>'links', 'id' => 'subnavlist')) ?><?php endif; ?>
</div>
</div>
<div id="sidebar-left">
<?php if ($left) : ?>
<?php print $left; ?>
<?php endif; ?>
</div>
<div id="content"<?php if (burnt_is_admin()) : ?> class="admin"<?php endif; ?>>
<?php print $breadcrumb ?>
<?php print $help ?>
<?php print $messages ?>
<h1 class="title"><?php print $title ?></h1>
<div class="tabs"><?php print $tabs ?></div>
<?php print $content; ?>
</div>
<?php if (($right) && (!burnt_is_admin())) : ?>
<div id="sidebar-right">
<?php print $right ?>
</div>
<?php endif; ?>
<div id="footer">
<div class="vcard" id="ach-contact">
<a class="url org fn" href="http://ach.org">Association for Computers and the Humanities</a>
<div class="adr">
<div class="street-address">
<div>c/o Vika Zafrin</div>
<div>Boston University Libraries</div>
<div>771 Commonwealth Ave</div>
</div>
<span class="locality">Boston</span>, <span class="region">MA</span>, <span class="postal-code">02215</span>
</div>
<div class="tel">617-358-6370</div>
<a class="email" href="mailto:secretary@ach.org">secretary@ach.org</a> ·
<a class="email" href="mailto:webmaster@ach.org">webmaster@ach.org</a>
</div>
<p class="license">Content licensed under <a href="http://creativecommons.org/licenses/by-sa/3.0/">CC BY-SA 3.0</a></p>
</div>
</div>
</body>
</html>