summaryrefslogtreecommitdiffstats
path: root/application/layouts/main.phtml
blob: 51dd89c4035e9227b61708d26dbcfd2262998791 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?php echo $this->doctype(); ?>
 
<html xmlns="http://www.w3.org/1999/xhtml" lang="de" xml:lang="de">
<head>
 
<?php
echo $this->headTitle();
echo $this->headMeta();
echo $this->headStyle();
echo $this->headLink();
echo $this->headScript();
?>
<style>
	html{font-family:Verdana,Arial;}
</style>
</head>
<body>
 
<?php echo $this->layout()->content; ?>
 
</body></html>