View difference between Paste ID: DNuqzb0X and MvC5Jpf2
SHOW: | | - or go back to the newest paste.
1
<?php
2
// $Id: page.tpl.php,v 1.48 2010/11/20 04:03:51 webchick Exp $
3
?>
4
  <?php print render($page['header']); ?>
5
6-
 <div id="logo-floater">
6+
<div id="header">
7
        <div id="logo-floater">
8
        <?php if ($logo || $site_title): ?>
9
          <?php if ($title): ?>
10
            <div id="branding"><strong><a href="<?php print $front_page ?>">
11
            <?php if ($logo): ?>
12
              <img src="<?php print $logo ?>" alt="<?php print $site_name_and_slogan ?>" title="<?php print $site_name_and_slogan ?>" id="logo" />
13
            <?php endif; ?>
14
            <?php print $site_html ?>
15
            </a></strong></div>
16
          <?php else: /* Use h1 when the content title is empty */ ?>
17
            <h1 id="branding"><a href="<?php print $front_page ?>">
18
            <?php if ($logo): ?>
19
              <img src="<?php print $logo ?>" alt="<?php print $site_name_and_slogan ?>" title="<?php print $site_name_and_slogan ?>" id="logo" />
20
            <?php endif; ?>
21
            <?php print $site_html ?>
22
            </a></h1>
23
        <?php endif; ?>
24-
        </div> 
24+
25
        </div>
26
27
  <div id="wrapper">
28
    <div id="container" class="clearfix">
29
30-
      <div id="header">
30+
31-
       
31+
32
      </div> <!-- /#header -->
33
34
      <?php if ($page['sidebar_first']): ?>
35
        <div id="sidebar-first" class="sidebar">
36
          <?php print render($page['sidebar_first']); ?>
37
        </div>
38
      <?php endif; ?>
39
40
      <div id="center"><div id="squeeze"><div class="right-corner"><div class="left-corner">
41
          <?php print $breadcrumb; ?>
42
          <?php if ($page['highlighted']): ?><div id="highlighted"><?php print render($page['highlighted']); ?></div><?php endif; ?>
43
          <a id="main-content"></a>
44
          <?php if ($tabs): ?><div id="tabs-wrapper" class="clearfix"><?php endif; ?>
45
          <?php print render($title_prefix); ?>
46
          <?php if ($title): ?>
47
            <h1<?php print $tabs ? ' class="with-tabs"' : '' ?>><?php print $title ?></h1>
48
          <?php endif; ?>
49
          <?php print render($title_suffix); ?>
50
          <?php if ($tabs): ?><?php print render($tabs); ?></div><?php endif; ?>
51
          <?php print render($tabs2); ?>
52
          <?php print $messages; ?>
53
          <?php print render($page['help']); ?>
54
          <?php if ($action_links): ?><ul class="action-links"><?php print render($action_links); ?></ul><?php endif; ?>
55
          <div class="clearfix">
56
            <?php print render($page['content']); ?>
57
          </div>
58
          <?php print $feed_icons ?>
59
          <?php print render($page['footer']); ?>
60
      </div></div></div></div> <!-- /.left-corner, /.right-corner, /#squeeze, /#center -->
61
62
      <?php if ($page['sidebar_second']): ?>
63
        <div id="sidebar-second" class="sidebar">
64
          <?php print render($page['sidebar_second']); ?>
65
        </div>
66
      <?php endif; ?>
67
68
    </div> <!-- /#container -->
69
  </div> <!-- /#wrapper -->