Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
15403 manish.sha 1
<?php
2
/**
3
 * @link          http://cakephp.org CakePHP(tm) Project
4
 * @package       app.View.Layouts
5
 * @since         CakePHP(tm) v 0.10.0.1076
6
 */
7
?>
8
<!DOCTYPE html>
9
<html>
10
<head>
11
<?php echo $this->Html->charset(); ?>
12
<title><?php echo $pageTitle; ?></title>
13
 
14
<?php if (!Configure::read('debug')): ?>
15
<meta http-equiv="Refresh" content="<?php echo $pause; ?>;url=<?php echo $url; ?>"/>
16
<?php endif ?>
17
<style><!--
18
P { text-align:center; font:bold 1.1em sans-serif }
19
A { color:#444; text-decoration:none }
20
A:HOVER { text-decoration: underline; color:#44E }
21
--></style>
22
</head>
23
<body>
24
<p><a href="<?php echo $url; ?>"><?php echo $message; ?></a></p>
25
</body>
26
</html>