diff options
Diffstat (limited to 'app/layout/layout.phtml')
| -rw-r--r-- | app/layout/layout.phtml | 17 |
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> |
