Implement printer friendly through CSS also for non-javascript. This
[squirrelmail.git] / templates / default / printer_friendly_main.tpl
CommitLineData
be7a2943 1<?php
2/**
3 * printer_friendly_main.tpl
4 *
5 * Display the entire printer friendly window. By default, this uses frames when
6 * javascript is available.
7 *
8 * The following variables are available in this template:
9 * $printer_friendly_url - URL to display the printer-frinedly version of a message
10 *
11 * @copyright &copy; 1999-2006 The SquirrelMail Project Team
12 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
13 * @version $Id$
14 * @package squirrelmail
15 * @subpackage templates
16 */
17
18/** add required includes **/
19
20/** extract template variables **/
21extract($t);
22
23/** Begin template **/
24?>
25<frameset rows="60, *">
26 <frame src="printer_friendly_top.php" name="top_frame" scrolling="no" noresize="noresize" frameborder="0" />
27 <frame src="<?php echo $printer_friendly_url; ?>" name="bottom_frame" frameborder="0" />
c2b22517 28</frameset>
29</html>