Archived
1
0
Fork 0
This repository has been archived on 2026-05-10. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
fiktivkod/application/modules/default/views/layout/default.phtml
2010-09-10 23:30:22 +02:00

37 lines
No EOL
1.2 KiB
PHTML

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"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/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="nav">
<?=$this->renderMenu() ?>
<span class="float-right">
<?=$this->authLink() ?>
|
<a href="<?=$this->url(array('lang' => 'sv')) ?>">sv</a>
<a href="<?=$this->url(array('lang' => 'en')) ?>">en</a>
</span>
</div>
<div id="subnav">
<?=$this->renderSubMenu() ?>
</div>
<br/>
<?=$this->layout()->content ?>
<div id="footer">
<a href="http://<?=$this->app['url'] ?>"><?=$this->app['name'] ?></a> v<?=$this->app['version'] ?> &copy; 2010
</div>
</div>
</body>
</html>