Allow template sets to define what the content-type of their output is.
[squirrelmail.git] / templates / default / note.tpl
1 <?php
2 /**
3 * note.tpl
4 *
5 * Template for displaying notes as needed.
6 *
7 * Variables available in this template:
8 * $note = Sanitized string containing not to be displayed.
9 *
10 * @copyright &copy; 1999-2006 The SquirrelMail Project Team
11 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
12 * @version $Id$
13 * @package squirrelmail
14 * @subpackage templates
15 */
16
17 // Get the variables from the template
18 extract($t)
19 ?>
20 <div class="sqm_noteWrapper">
21 <div class="sqm_note">
22 <?php echo $note."\n"; ?>
23 </div>
24 </div>
25 <br />