- reviewed and used objects PageTemplate and Locale - removed associated workarounds - replaced ~12k tabs with ~48k spaces - fixed some localization errors - whoops, forgot to update some Util::$pageTemplate calls to $this
39 lines
1.3 KiB
PHP
39 lines
1.3 KiB
PHP
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<?php $this->brick('head'); ?>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="layers"></div>
|
|
<!--[if lte IE 6]><table id="ie6layout"><tr><th class="ie6layout-th"></th><td id="ie6layout-td"><div id="ie6layout-div"></div><![endif]-->
|
|
<div id="layout">
|
|
<div id="header">
|
|
<div id="header-logo">
|
|
<a href="."></a>
|
|
<h1><?php echo htmlentities($this->name); ?></h1>
|
|
</div>
|
|
</div>
|
|
<div id="wrapper" class="nosidebar">
|
|
<div id="toptabs">
|
|
<div id="toptabs-inner">
|
|
<div id="toptabs-right">
|
|
<?php $this->brick('headerMenu'); ?>
|
|
</div>
|
|
<div id="toptabs-generic"></div>
|
|
<div class="clear"></div>
|
|
</div>
|
|
</div>
|
|
<div class="topbar" id="topbar">
|
|
<div class="topbar-search"><form action="."><a href="javascript:;"></a><input name="search" size="35" value="" id="livesearch-generic" /></form></div>
|
|
<div class="topbar-browse" id="topbar-browse"></div>
|
|
<div class="topbar-buttons" id="topbar-buttons"></div>
|
|
</div>
|
|
|
|
<script type="text/javascript">
|
|
<?php
|
|
foreach ($this->jsGlobals as $glob):
|
|
$this->gBrick($glob[0], ['vars' => $glob[1], 'extra' => $glob[2]]);
|
|
endforeach;
|
|
?>
|
|
</script>
|