-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpage.tpl.php
More file actions
executable file
·81 lines (66 loc) · 2.71 KB
/
Copy pathpage.tpl.php
File metadata and controls
executable file
·81 lines (66 loc) · 2.71 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
73
74
75
76
77
78
79
80
<div id="container">
<div id="header">
<div 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') ?>" border="0" /></a>
<?php endif; ?>
</div>
<ul id="globalnav">
<?php if ($logged_in) : ?>
<li class="first"><?php print t("Hello ") ?> <strong><?php print theme('username', array('account'=>$user))?></strong></li>
<li><a href="<?php print url('/user/logout')?>"><?php print t("Log out") ?></a></li>
<?php else: ?>
<li class="noborder"><strong><a href="<?php print url('/user/register')?>"><?php print t("Join Now")?>!</a></strong></li>
<li><a href="<?php print url('/user/login')?>"><?php print t("Sign In")?></a></li>
<?php endif ?>
</ul>
</div>
<div id="navibar">
<div id="navigation">
<?php print theme('links__system_main_menu', array('links' => $main_menu));?>
</div>
<?php if ($page['header']): ?>
<div id="header-block">
<?php print render($page['header']); ?>
</div>
<?php endif; ?>
</div>
<div class="Container">
<div class="SL">
<?php if ($page['sidebar_second']): ?>
<div id="sidebar-second" class="column sidebar"><div class="section">
<?php print render($page['sidebar_second']); ?>
</div></div> <!-- /.section, /#sidebar-first -->
<?php endif; ?>
</div><!--SR-->
<div class="SR">
<?php if ($page['sidebar_first']): ?>
<div id="sidebar-first" class="column sidebar"><div class="section">
<?php print render($page['sidebar_first']); ?>
</div></div> <!-- /.section, /#sidebar-first -->
<?php endif; ?>
</div><!--SR-->
<div class="SCi">
<div id="main">
<?php print $messages; ?>
<?php if ($page['highlighted']): ?><div id="highlighted"><?php print render($page['highlighted']); ?></div><?php endif; ?>
<?php if (!isset($node)):?>
<?php print render($title_prefix); ?>
<?php if ($title): ?><h1 class="title" id="page-title"><?php print $title; ?></h1><?php endif; ?>
<?php print render($title_suffix); ?>
<?php endif?>
<?php if ($tabs): ?><div class="tabs"><?php print render($tabs); ?></div><?php endif; ?>
<?php print render($page['help']); ?>
<?php if ($action_links): ?><ul class="action-links"><?php print render($action_links); ?></ul><?php endif; ?>
<?php print render($page['content']); ?>
<?php print $feed_icons; ?>
</div><!-- main -->
</div><!--SCi-->
</div>
<div class="ExtraBG">
<?php if ($page['footer']): ?>
<div class="bottomMenu">
<?php print render($page['footer']); ?>
</div>
<?php endif; ?>
</div>
</div><!--container-->