-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
45 lines (45 loc) · 1.32 KB
/
index.php
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
<!DOCTYPE HTML>
<html>
<head>
<?php
expTheme::head(array(
"xhtml"=>false,
"css_primer"=>array(
YUI2_RELATIVE."yui2-reset-fonts-grids/yui2-reset-fonts-grids.css"
),
"css_core"=>array(
"common"
),
"css_links"=>true,
"css_theme"=>true
)
);
?>
</head>
<body>
<div id="doc4" class="yui-t2">
<div id="hd">
<div id="logo">
<a href="<?php echo URL_FULL; ?>" title="<?php echo SITE_TITLE; ?>"><?php echo ORGANIZATION_NAME; ?></a> <sub><?php echo SITE_HEADER; ?></sub>
</div>
<?php expTheme::module(array("controller"=>"navigation","action"=>"showall","view"=>"showall_YUI Top Nav")); ?>
</div>
<div id="bd">
<div class="yui-b">
<?php expTheme::module(array("controller"=>"container","action"=>"showall","view"=>"showall","source"=>"@left")); ?>
</div>
<div id="yui-main">
<div class="yui-b">
<div class="yui-g">
<?php expTheme::main(); ?>
</div>
</div>
</div>
</div>
<div id="ft">
<?php expTheme::module(array("controller"=>"text","action"=>"showall","view"=>"showall_single","source"=>"@footer","chrome"=>1)) ?>
</div>
</div>
<?php expTheme::foot(); ?>
</body>
</html>