Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

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