diff options
author | Benny Baumann <BenBE@geshi.org> | 2015-08-09 22:11:39 +0200 |
---|---|---|
committer | Benny Baumann <BenBE@geshi.org> | 2015-08-09 22:11:50 +0200 |
commit | ce38587c8459587d7a03002ebcb4427ed95fb85c (patch) | |
tree | 1a5d787189deb6b895ff6df7fe1bb2303f92961d /manager/application/layouts/scripts/layout.phtml | |
parent | 2cbb6d9c9cea8624d474807857ba2f8c81352c15 (diff) | |
download | cacert-mgr-ce38587c8459587d7a03002ebcb4427ed95fb85c.tar.gz cacert-mgr-ce38587c8459587d7a03002ebcb4427ed95fb85c.tar.xz cacert-mgr-ce38587c8459587d7a03002ebcb4427ed95fb85c.zip |
bug 1396: Normalize Linefeed to Unix format in Repository
Diffstat (limited to 'manager/application/layouts/scripts/layout.phtml')
-rw-r--r-- | manager/application/layouts/scripts/layout.phtml | 64 |
1 files changed, 32 insertions, 32 deletions
diff --git a/manager/application/layouts/scripts/layout.phtml b/manager/application/layouts/scripts/layout.phtml index 44f59cf..ffb5763 100644 --- a/manager/application/layouts/scripts/layout.phtml +++ b/manager/application/layouts/scripts/layout.phtml @@ -1,32 +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 +<?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> |