bromine
|
181
|
1
|
<?php
|
|
2
|
/* SVN FILE: $Id: thin.ctp 7690 2008-10-02 04:56:53Z nate $ */
|
|
3
|
/**
|
|
4
|
*
|
|
5
|
* PHP versions 4 and 5
|
|
6
|
*
|
|
7
|
* CakePHP(tm) : Rapid Development Framework <http://www.cakephp.org/>
|
|
8
|
* Copyright 2005-2008, Cake Software Foundation, Inc.
|
|
9
|
* 1785 E. Sahara Avenue, Suite 490-204
|
|
10
|
* Las Vegas, Nevada 89104
|
|
11
|
*
|
|
12
|
* Licensed under The MIT License
|
|
13
|
* Redistributions of files must retain the above copyright notice.
|
|
14
|
*
|
|
15
|
* @filesource
|
|
16
|
* @copyright Copyright 2005-2008, Cake Software Foundation, Inc.
|
|
17
|
* @link http://www.cakefoundation.org/projects/info/cakephp CakePHP(tm) Project
|
|
18
|
* @package cake
|
|
19
|
* @subpackage cake.cake.libs.view.templates.layouts.email.html
|
|
20
|
* @since CakePHP(tm) v 0.10.0.1076
|
|
21
|
* @version $Revision: 7690 $
|
|
22
|
* @modifiedby $LastChangedBy: nate $
|
|
23
|
* @lastmodified $Date: 2008-10-02 00:56:53 -0400 (Thu, 02 Oct 2008) $
|
|
24
|
* @license http://www.opensource.org/licenses/mit-license.php The MIT License
|
|
25
|
*/
|
|
26
|
?>
|
|
27
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
|
|
28
|
|
|
29
|
<html>
|
|
30
|
<head>
|
|
31
|
<title><?php echo $title_for_layout;?></title>
|
|
32
|
</head>
|
|
33
|
|
|
34
|
<body>
|
|
35
|
<?php echo $content_for_layout;?>
|
|
36
|
|
|
37
|
<p>This email was sent using the CakePHP Framework</p>
|
|
38
|
</body>
|
|
39
|
</html>
|