commiting uncommited changes on live site
[weblabels.fsf.org.git] / crm.fsf.org / 20131203 / files / sites / all / modules-new / civicrm / templates / CRM / common / print.tpl
1 {*
2 +--------------------------------------------------------------------+
3 | CiviCRM version 4.6 |
4 +--------------------------------------------------------------------+
5 | Copyright CiviCRM LLC (c) 2004-2015 |
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} | {ts}CiviCRM{/ts}{/if}</title>
32 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
33 {crmRegion name='html-header' allowCmsOverride=0}{/crmRegion}
34 <style type="text/css" media="print">@import url({$config->resourceBase}css/print.css);</style>
35 </head>
36
37 <body>
38 {if $config->debug}
39 {include file="CRM/common/debug.tpl"}
40 {/if}
41 <div id="crm-container" class="crm-container" lang="{$config->lcMessages|truncate:2:"":true}" xml:lang="{$config->lcMessages|truncate:2:"":true}">
42 {crmRegion name='page-header' allowCmsOverride=0}{/crmRegion}
43 {* Check for Status message for the page (stored in session->getStatus). Status is cleared on retrieval. *}
44 {include file="CRM/common/status.tpl"}
45
46 {crmRegion name='page-body' allowCmsOverride=0}
47 <!-- .tpl file invoked: {$tplFile}. Call via form.tpl if we have a form in the page. -->
48 {if $isForm and isset($formTpl)}
49 {include file="CRM/Form/$formTpl.tpl"}
50 {else}
51 {include file=$tplFile}
52 {/if}
53 {/crmRegion}
54
55
56 {crmRegion name='page-footer' allowCmsOverride=0}{/crmRegion}
57 </div> {* end crm-container div *}
58 </body>
59 </html>