-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpage.tpl.php
More file actions
69 lines (61 loc) · 3.32 KB
/
page.tpl.php
File metadata and controls
69 lines (61 loc) · 3.32 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
<?php
?>
<div id="page" class="page">
<div id="page-inner" class="page-inner">
<!-- header-group region: width = grid_width -->
<div id="header-group" class="header-group region clearfix <?php print $grid_width; ?>">
<?php if ($logo || $site_name || $site_slogan): ?>
<div id="header-site-info" class="header-site-info block">
<div id="header-site-info-inner" class="header-site-info-inner inner">
<?php if ($logo): ?>
<div id="logo">
<a href="<?php print check_url($front_page); ?>" title="<?php print t('Home'); ?>"><img src="<?php print $logo; ?>" alt="<?php print t('Home'); ?>" /></a>
</div>
<?php endif; ?>
<?php if ($site_name || $site_slogan): ?>
<div id="site-name-wrapper" class="clearfix">
<?php if ($site_name): ?>
<span id="site-name"><a href="<?php print check_url($front_page); ?>" title="<?php print t('Home'); ?>"><?php print $site_name; ?></a></span>
<?php endif; ?>
<?php if ($site_slogan): ?>
<span id="slogan"><?php print $site_slogan; ?></span>
<?php endif; ?>
</div><!-- /site-name-wrapper -->
<?php endif; ?>
</div><!-- /header-site-info-inner -->
</div><!-- /header-site-info -->
<?php endif; ?>
<?php print render($page['header']); ?>
<?php print render($page['main_menu']); ?>
</div><!-- /header-group -->
<!-- main region: width = grid_width -->
<div id="main" class="main region clearfix <?php print $grid_width; ?>">
<?php print render($page['sidebar_first']); ?>
<!-- content group: width = grid_width - sidebar_first_width - sidebar_second_width -->
<div id="content-group" class="content-group region nested <?php print $content_group_width; ?>">
<a name="main-content-area" id="main-content-area"></a>
<?php print theme('grid_block', array('content' => $breadcrumb, 'id' => 'breadcrumbs')); ?>
<?php print theme('grid_block', array('content' => $messages, 'id' => 'content-messages')); ?>
<?php print theme('grid_block', array('content' => render($tabs), 'id' => 'content-tabs')); ?>
<?php print theme('grid_block', array('content' => render($page['help']), 'id' => 'content-help')); ?>
<div id="content-inner" class="content-inner block">
<div id="content-inner-inner" class="content-inner-inner inner">
<?php print render($title_prefix); ?>
<?php if ($title): ?>
<h1 class="title"><?php print $title; ?></h1>
<?php endif; ?>
<?php print render($title_suffix); ?>
<?php if ($action_links): ?>
<ul class="action-links"><?php print render($action_links); ?></ul>
<?php endif; ?>
<div id="content-content" class="content-content">
<?php print render($page['content']); ?>
</div><!-- /content-content -->
</div><!-- /content-inner-inner -->
</div><!-- /content-inner -->
</div><!-- /content-group -->
<?php print render($page['sidebar_second']); ?>
</div><!-- /main -->
<?php print render($page['footer']); ?>
</div><!-- /page-inner -->
</div><!-- /page -->