summaryrefslogtreecommitdiffstats
path: root/application/layouts/layout.phtml
blob: 45552f35817abc4eb86f71c541f1f03278dde1b7 (plain) (blame)
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
52
53
54
55
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>