summaryrefslogtreecommitdiff
path: root/app/layout/layout.phtml
diff options
context:
space:
mode:
authorGravatar Marien Fressinaud <dev@marienfressinaud.fr> 2012-10-21 18:47:57 +0200
committerGravatar Marien Fressinaud <dev@marienfressinaud.fr> 2012-10-21 18:47:57 +0200
commitfb57be5a5af3a2fb46b2dbf2b503ffe78eb5cf49 (patch)
tree9440fc7846d8a56a7005b9ef029669c96ad959aa /app/layout/layout.phtml
First commit
Diffstat (limited to 'app/layout/layout.phtml')
-rw-r--r--app/layout/layout.phtml17
1 files changed, 17 insertions, 0 deletions
diff --git a/app/layout/layout.phtml b/app/layout/layout.phtml
new file mode 100644
index 000000000..ad798c369
--- /dev/null
+++ b/app/layout/layout.phtml
@@ -0,0 +1,17 @@
+<!DOCTYPE html>
+<html lang="fr">
+ <head>
+ <meta charset="utf-8">
+ <?php echo self::headTitle(); ?>
+ <?php echo self::headStyle(); ?>
+ </head>
+ <body>
+<div id="global">
+ <?php $this->partial ('aside'); ?>
+
+ <div id="main">
+ <?php $this->render (); ?>
+ </div>
+</div>
+ </body>
+</html>