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-08-22 03:06:46 +02:00

26 lines
No EOL
804 B
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" ?>
<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->baseUrl() ?>/sv">sv</a>
<a href="<?=$this->baseUrl() ?>/en">en</a>
</span>
</div>
<br/>
<?=$this->layout()->content ?>
</body>
</html>