31 lines
No EOL
1.1 KiB
PHTML
31 lines
No EOL
1.1 KiB
PHTML
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
|
|
"http://www.w3.org/TR/2002/REC-xhtml1-20020801/DTD/xhtml1-strict.dtd">
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
<?=$this->headTitle() . "\n" /* Newline for pretty source :) */ ?>
|
|
<?=$this->headMeta() . "\n" /* Newline for pretty source :) */ ?>
|
|
<link rel="stylesheet" type="text/css" href="<?=$this->baseUrl()?>/css/default.css" media="screen" />
|
|
</head>
|
|
<body>
|
|
|
|
<div id="header"></div>
|
|
|
|
<div id="nav">
|
|
<?=$this->navigation()->menu() ?>
|
|
<span class="float-right">
|
|
<a href="<?=$this->url(array('lang' => 'sv')) ?>">sv</a>
|
|
<a href="<?=$this->url(array('lang' => 'en')) ?>">en</a>
|
|
</span>
|
|
</div>
|
|
|
|
<br/>
|
|
|
|
<?=$this->layout()->content ?>
|
|
|
|
<div id="footer">
|
|
<?=$this->authLink() ?>
|
|
|
|
|
<a href="http://<?=$this->app['url'] ?>"><?=$this->app['name'] ?></a> v<?=$this->app['version'] ?> © 2010
|
|
</div>
|
|
</body>
|
|
</html>
|