-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdefault.php
More file actions
51 lines (41 loc) · 1.18 KB
/
Copy pathdefault.php
File metadata and controls
51 lines (41 loc) · 1.18 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
<?php
defined('C5_EXECUTE') or die(_("Access Denied."));
$this->inc('elements/header.php');
$nav = Loader::helper('navigation');
?>
<div id="content">
<div id="colOne">
<?php $this->inc('elements/sidebar.php'); ?>
</div>
<div id="colTwo">
<div id="main">
<?php $a = new Area('Main'); $a->display($c); ?>
</div>
<div id="middle">
<div id="middle-left">
<?php $a = new Area('Middle'); $a->display($c); ?>
</div>
<div id="middle-right">
<?php $a = new Area('Middle Right'); $a->display($c); ?>
</div>
</div>
<div id="feeds">
<?php $a = new Area('Feeds'); $a->display($c); ?>
<div id="feed-left">
<?php $a = new Area('Feed Left'); $a->display($c); ?>
</div>
<div id="feed-right">
<?php $a = new Area('Feed Right'); $a->display($c); ?>
</div>
</div>
</div><!-- end colTwo -->
<div id="bottombar">
<div id="sharebar">
<?
$a = new GlobalArea('Share Bar');
$a->display($c);
?>
</div><!-- end sharebar -->
</div><!-- end bottombar -->
</div><!-- end content -->
<?php $this->inc('elements/footer.php'); ?>