summaryrefslogtreecommitdiffstats
path: root/application/layouts/main.phtml
diff options
context:
space:
mode:
Diffstat (limited to 'application/layouts/main.phtml')
-rw-r--r--application/layouts/main.phtml21
1 files changed, 21 insertions, 0 deletions
diff --git a/application/layouts/main.phtml b/application/layouts/main.phtml
new file mode 100644
index 0000000..51dd89c
--- /dev/null
+++ b/application/layouts/main.phtml
@@ -0,0 +1,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>