summaryrefslogtreecommitdiffstats
path: root/application/layouts
diff options
context:
space:
mode:
authorSimon2011-03-08 19:12:36 +0100
committerSimon2011-03-08 19:12:36 +0100
commit260b7860bcfcd6ad4d80437bad1d9b885c680e75 (patch)
tree997584da7323694c31da8514ec192fb4a03a9c3a /application/layouts
parentfiltertypes implementiert (diff)
downloadpbs2-260b7860bcfcd6ad4d80437bad1d9b885c680e75.tar.gz
pbs2-260b7860bcfcd6ad4d80437bad1d9b885c680e75.tar.xz
pbs2-260b7860bcfcd6ad4d80437bad1d9b885c680e75.zip
arbeiten zur oberflächenvereinheitlichung
Diffstat (limited to 'application/layouts')
-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>