2009-12-18 12:56:12 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2014-08-18 20:17:49 +00:00
|
|
|
<!DOCTYPE html>
|
2009-12-18 12:56:12 +00:00
|
|
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
|
|
|
<?php
|
2014-08-18 20:17:49 +00:00
|
|
|
$this->layout = 'two-column';
|
|
|
|
include __DIR__.'/partials/header.inc';
|
2009-12-18 12:56:12 +00:00
|
|
|
?>
|
|
|
|
<body>
|
2014-08-18 20:17:49 +00:00
|
|
|
<?php
|
|
|
|
include __DIR__.'/partials/banner.inc';
|
|
|
|
?>
|
|
|
|
<div id="panel-container">
|
|
|
|
<?php
|
|
|
|
include __DIR__.'/partials/panel-one.inc';
|
|
|
|
?>
|
|
|
|
<div id="content-panel">
|
|
|
|
<?php
|
|
|
|
include BLOSSOM.'/errorMessages.php';
|
|
|
|
echo $this->includeBlocks();
|
|
|
|
?>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<?php
|
|
|
|
include __DIR__.'/partials/footer.inc';
|
|
|
|
?>
|
2009-12-18 12:56:12 +00:00
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
<?php
|
2014-08-18 20:17:49 +00:00
|
|
|
include __DIR__.'/partials/garbageCollection.inc';
|
2009-12-18 12:56:12 +00:00
|
|
|
?>
|