Merge pull request #159 from lcdservices/master
[civicrm-core.git] / templates / CRM / common / print.tpl
1 {*
2 +--------------------------------------------------------------------+
3 | CiviCRM version 4.3 |
4 +--------------------------------------------------------------------+
5 | Copyright CiviCRM LLC (c) 2004-2013 |
6 +--------------------------------------------------------------------+
7 | This file is a part of CiviCRM. |
8 | |
9 | CiviCRM is free software; you can copy, modify, and distribute it |
10 | under the terms of the GNU Affero General Public License |
11 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
12 | |
13 | CiviCRM is distributed in the hope that it will be useful, but |
14 | WITHOUT ANY WARRANTY; without even the implied warranty of |
15 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
16 | See the GNU Affero General Public License for more details. |
17 | |
18 | You should have received a copy of the GNU Affero General Public |
19 | License and the CiviCRM Licensing Exception along |
20 | with this program; if not, contact CiviCRM LLC |
21 | at info[AT]civicrm[DOT]org. If you have questions about the |
22 | GNU Affero General Public License or the licensing of CiviCRM, |
23 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
24 +--------------------------------------------------------------------+
25 *}
26 {* Print.tpl: wrapper for Print views. Provides complete HTML doc. Includes print media stylesheet.*}
27 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
28 <html xmlns="http://www.w3.org/1999/xhtml" lang="{$config->lcMessages|truncate:2:"":true}" xml:lang="{$config->lcMessages|truncate:2:"":true}">
29
30 <head>
31 <title>{if $pageTitle}{$pageTitle|strip_tags}{else}{ts}Printer-Friendly View{/ts}{/if}</title>
32 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
33 <base href="{crmURL p="" a=true}" /><!--[if IE]></base><![endif]-->
34 {crmRegion name='html-header' allowCmsOverride=0}{/crmRegion}
35 <style type="text/css" media="print">@import url({$config->resourceBase}css/print.css);</style>
36 <style type="text/css">@import url({$config->resourceBase}css/skins/aqua/theme.css);</style>
37 </head>
38
39 <body>
40 {if $config->debug}
41 {include file="CRM/common/debug.tpl"}
42 {/if}
43 <div id="crm-container" class="crm-container" lang="{$config->lcMessages|truncate:2:"":true}" xml:lang="{$config->lcMessages|truncate:2:"":true}">
44 {* Check for Status message for the page (stored in session->getStatus). Status is cleared on retrieval. *}
45 {if $session->getStatus(false)}
46 <div class="messages status no-popup">
47 <div class="icon inform-icon"></div>
48 {$session->getStatus(true)}
49 </div>
50 {/if}
51
52 {if isset($display_name) and $display_name}
53 <h3 style="margin: .25em;">{$display_name}</h3>
54 {/if}
55
56 <!-- .tpl file invoked: {$tplFile}. Call via form.tpl if we have a form in the page. -->
57 {if $isForm}
58 {include file="CRM/Form/$formTpl.tpl"}
59 {else}
60 {include file=$tplFile}
61 {/if}
62
63
64 </div> {* end crm-container div *}
65 </body>
66 </html>