Archived
1
0
Fork 0
This commit is contained in:
H Hautakoski 2010-09-02 21:44:00 +02:00
parent 34491e8a6f
commit 2c69dfe173
6 changed files with 437 additions and 251 deletions

View file

@ -1,31 +1,34 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/2002/REC-xhtml1-20020801/DTD/xhtml1-strict.dtd">
"http://www.w3.org/TR/xhtml1/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>
<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/reset.css" media="screen" />
<link rel="stylesheet" type="text/css" href="<?=$this->baseUrl()?>/css/default.css" media="screen" />
</head>
<body>
<div id="wrapper" class="small">
<div id="header"></div>
<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>
<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/>
<br/>
<?=$this->layout()->content ?>
<?=$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>
<div id="footer">
<?=$this->authLink() ?>
|
<a href="http://<?=$this->app['url'] ?>"><?=$this->app['name'] ?></a> v<?=$this->app['version'] ?> &copy; 2010
</div>
</div>
</body>
</html>