main.ftl
上传用户:hbzhoufeng
上传日期:2009-12-23
资源大小:75k
文件大小:4k
源码类别:

OA系统

开发平台:

Java

  1. <!doctype HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  2. <!-- Copyright (c) 2003 The Open For Business Project - www.ofbiz.org -->
  3. <#--
  4.  *  Copyright (c) 2003 The Open For Business Project - www.ofbiz.org
  5.  *
  6.  *  Permission is hereby granted, free of charge, to any person obtaining a 
  7.  *  copy of this software and associated documentation files (the "Software"), 
  8.  *  to deal in the Software without restriction, including without limitation 
  9.  *  the rights to use, copy, modify, merge, publish, distribute, sublicense, 
  10.  *  and/or sell copies of the Software, and to permit persons to whom the 
  11.  *  Software is furnished to do so, subject to the following conditions:
  12.  *
  13.  *  The above copyright notice and this permission notice shall be included 
  14.  *  in all copies or substantial portions of the Software.
  15.  *
  16.  *  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS 
  17.  *  OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 
  18.  *  MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 
  19.  *  IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY 
  20.  *  CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT 
  21.  *  OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR 
  22.  *  THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  23.  *
  24.  *@author     Andy Zeneski (jaz@ofbiz.org)
  25.  *@version    $Revision: 1.2 $
  26.  *@since      2.1
  27. -->
  28. <#assign layoutSettings = requestAttributes.layoutSettings>
  29. <html>
  30. <head>
  31.     <#assign layoutSettings = requestAttributes.layoutSettings>
  32.     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  33.     <title>${layoutSettings.companyName}: ${page.title}</title>
  34.     <script language='javascript' src='<@ofbizContentUrl>/images/calendar1.js</@ofbizContentUrl>' type='text/javascript'></script>
  35.     <link rel='stylesheet' href='<@ofbizContentUrl>/images/maincss.css</@ofbizContentUrl>' type='text/css'>
  36.     <link rel='stylesheet' href='<@ofbizContentUrl>/images/tabstyles.css</@ofbizContentUrl>' type='text/css'>    
  37. </head>
  38. <body>
  39. <table border=0 width='100%' cellspacing='0' cellpadding='0' class='headerboxoutside'>
  40.   <tr>
  41.     <td width='100%'>
  42.       <table width='100%' border='0' cellspacing='0' cellpadding='0' class='headerboxtop'>
  43.         <tr>
  44.           <#if layoutSettings.headerImageUrl?exists>
  45.           <td align=left width='1%'><img alt="${layoutSettings.companyName}" src='<@ofbizContentUrl>${layoutSettings.headerImageUrl}</@ofbizContentUrl>'></td>
  46.           </#if>       
  47.           <td align=right width='1' nowrap <#if layoutSettings.headerRightBackgroundUrl?has_content>background='${layoutSettings.headerRightBackgroundUrl}'</#if>>
  48.             <#if requestAttributes.person?has_content>
  49.               <div class="insideHeaderText">Welcome&nbsp;${requestAttributes.person.firstName?if_exists}&nbsp;${requestAttributes.person.lastName?if_exists}!</div>
  50.             <#elseif requestAttributes.partyGroup?has_content>
  51.               <div class="insideHeaderText">Welcome&nbsp;${requestAttributes.partyGroup.groupName?if_exists}!</div>
  52.             <#else>
  53.               <div class="insideHeaderText">Welcome!</div>
  54.             </#if>
  55.             <div class="insideHeaderText">&nbsp;${Static["org.ofbiz.core.util.UtilDateTime"].nowTimestamp().toString()}</div>
  56.           </td>
  57.         </tr>
  58.       </table>
  59.     </td>
  60.   </tr>
  61. </table>
  62. ${pages.get("/includes/appbar.ftl")}
  63. <div class="centerarea">
  64.   ${pages.get("/includes/header.ftl")}
  65.   <div class="contentarea">
  66.     <div style='border: 0; margin: 0; padding: 0; width: 100%;'>
  67.       <table style='border: 0; margin: 0; padding: 0; width: 100%;' cellpadding='0' cellspacing='0'>
  68.         <tr>
  69.           <#if page.leftbar?exists>${pages.get(page.leftbar)}</#if>
  70.           <td width='100%' valign='top' align='left'>
  71.             ${pages.get("/includes/errormsg.ftl")}
  72.             ${pages.get(page.path)}
  73.           </td>
  74.           <#if page.rightbar?exists>${pages.get(page.rightbar)}</#if>
  75.         </tr>
  76.       </table>       
  77.     </div>
  78.     <div class='spacer'></div>
  79.   </div>
  80. </div>
  81. ${pages.get("/includes/footer.ftl")}
  82. </body>
  83. </html>