diff options
author | Markus Warg <markus@mawaunix.mawa.sls> | 2010-03-31 16:43:49 +0200 |
---|---|---|
committer | Markus Warg <markus@mawaunix.mawa.sls> | 2010-03-31 16:43:49 +0200 |
commit | 4f4c5ce3ccf0370f926d75e700e8b0bd2208f3f6 (patch) | |
tree | 82cb017ac68772ea36c0f522ec019bf14fbdc77a /manager/application/layouts/scripts/layout.phtml | |
parent | 8398c9048d34a1f51212ae770998fc082fc93b69 (diff) | |
download | cacert-mgr-4f4c5ce3ccf0370f926d75e700e8b0bd2208f3f6.tar.gz cacert-mgr-4f4c5ce3ccf0370f926d75e700e8b0bd2208f3f6.tar.xz cacert-mgr-4f4c5ce3ccf0370f926d75e700e8b0bd2208f3f6.zip |
initial setup of framework code
enabled features
* login
* crt login
* top / left menu
* logging
* db layer
Diffstat (limited to 'manager/application/layouts/scripts/layout.phtml')
-rw-r--r-- | manager/application/layouts/scripts/layout.phtml | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/manager/application/layouts/scripts/layout.phtml b/manager/application/layouts/scripts/layout.phtml new file mode 100644 index 0000000..44f59cf --- /dev/null +++ b/manager/application/layouts/scripts/layout.phtml @@ -0,0 +1,32 @@ +<?php
+// application/layouts/scripts/layout.phtml
+
+print $this->doctype(); ?>
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
+ <title><?php print $this->headTitle; ?></title>
+ <?php print $this->headLink()->prependStylesheet('/css/global.css'); ?>
+ <?php print $this->headScript()->appendFile('/js/positionUserInfo.js'); // ->appendFile('/js/center.js'); ?>
+</head>
+<body>
+ <div id="center">
+ <div id="header">
+ <div id="header-logo">
+ <img src="/img/cacert4.png" border="0" alt="CACert Logo" width="100px" height="30px">
+ </div>
+ <div id="header-navigation">
+ <?php print $this->topNav(); ?>
+ </div>
+ </div>
+
+ <div id="left-navigation">
+ <?php print $this->leftNav(); ?>
+ </div>
+ <div id="content">
+ <?php print $this->layout()->content; ?>
+ </div>
+ </div>
+ <? print $this->userInfo(); ?>
+</body>
+</html>
\ No newline at end of file |