summaryrefslogtreecommitdiffstats
path: root/application/layouts/layout.phtml
diff options
context:
space:
mode:
Diffstat (limited to 'application/layouts/layout.phtml')
-rw-r--r--application/layouts/layout.phtml56
1 files changed, 56 insertions, 0 deletions
diff --git a/application/layouts/layout.phtml b/application/layouts/layout.phtml
new file mode 100644
index 0000000..45552f3
--- /dev/null
+++ b/application/layouts/layout.phtml
@@ -0,0 +1,56 @@
+<?= $this->doctype() ?>
+<html xmlns="http://www.w3c.org/1999/xhtml" xml:lang="de" lang="de">
+<head>
+<?= $this->headMeta() ?>
+<?= $this->headTitle() ?>
+<?= $this->headLink() ?>
+<?= $this->headScript() ?>
+</head>
+<body>
+<div id="wrapper">
+<div id="header-container">
+<div id="header-background">
+<img src="/images/bg_title3.png"/>
+<div id="header-logo">
+<img src="/images/logo.png" />
+</div>
+</div>
+<div id="top-menu">
+<ul>
+<li><a href="http://openslx.org">OpenSLX</a> |</li>
+<li><a href="http://labs.openslx.org">OpenSLX Labs</a> |</li>
+<li><a href="http://blog.openslx.org">Blog</a></li>
+</ul>
+</div>
+<div id="header-centerbox">
+<h1>:: <?= $this->escape($this->title) ?> ::</h1>
+<div id="header-menubar">
+<? if (!empty($this->menubar)) :?>
+<? $num = count($this->menubar); ?>
+<ul>
+<? foreach ($this->menubar as $title => $link) : ?>
+ <li><a href="<?= $link ?>"><?= $title ?></a></li>
+<? endforeach; ?>
+</ul>
+<? endif;?>
+</div>
+</div>
+</div>
+<div id="content">
+<div id="content-centerbox">
+<?= $this->layout()->content ?>
+</div>
+</div>
+<div id="footer">
+<div id="footer-centerbox">
+<center>
+<p>OpenSLX PBS Version 0.1</p>
+<p class="copyright">Copyright © 2009 - S.Schmelzer // OpenSLX GmbH<br/>
+This application is free software distributed under the GPL version 2.<br/>
+</p>
+</center>
+</div>
+</div>
+</div>
+</body>
+</html>