619cc520b154cc467e01cc6eec53def46f320ba0
[Pman.BAdmin] / templates / master.html
1 <!DOCTYPE html 
2       PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
3       "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 
4 <html xmlns="http://www.w3.org/1999/xhtml" 
5       xmlns:html="http://www.w3.org/1999/xhtml" 
6       xmlns:svg="http://www.w3.org/2000/svg"
7       xmlns:xlink="http://www.w3.org/1999/xlink"> 
8     <head>
9         <!-- core/template/master.html -->
10
11         <title>{appName}</title>
12         <meta name="google" value="notranslate" />
13         <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" />
14             
15         <flexy:include src="favicon.html"></flexy:include>
16          
17         {outputCSSIncludes()} 
18         
19         
20      </head>
21      
22     <body class="ytheme-gray">  
23          
24 {if:isDev}                  
25          
26         <script type="text/javascript" src="{rootURL}/roojs1/roojs-core-debug.js"></script>
27         <script type="text/javascript" src="{rootURL}/roojs1/roojs-bootstrap-debug.js"></script>
28          
29 {else:}                  
30         <script type="text/javascript" src="{rootURL}/roojs1/roojs-core-debug.js"></script>
31         <script type="text/javascript" src="{rootURL}/roojs1/roojs-bootstrap-debug.js"></script>
32                  
33 {end:}                  
34         <flexy:toJSON 
35             baseURL="baseURL" 
36             rootURL="rootURL" 
37             isDev="isDev"
38             serverName="serverName" 
39             appLang="lang"
40             appName="appName"
41             appNameShort="appNameShort"
42             appLogo="appLogo"
43             appOwnerCompanyId="company.id"
44              
45             AppLinkError="linkFail"
46             AppTrackOnLoad="onloadTrack"
47             
48             showNewPass="showNewPass"
49             allowSignup="allowSignup"
50             
51             logoPrefix="logoPrefix"
52             
53             AppModules="appModules"
54             AppVersion="appVersion"
55             appDisabled="appDisabled"
56             uiConfig="uiConfig"
57         ></flexy:toJSON>
58         
59         <script type="text/javascript">
60             Pman = {};
61             Ext=Roo; // bc
62             Roo.BLANK_IMAGE_URL =  rootURL + "/roojs1/images/gray/s.gif";
63             Roo.rootURL = rootURL +'/roojs1/';
64         </script>
65         
66         {outputJavascriptIncludes()}
67         {outputJavascriptDir(#Pman/Core#,#Pman.Request.js#,#Pman.Download.js#)}
68            
69         <!-- finally language.. -->   
70         <script type="text/javascript" src="{baseURL}/Core/I18n.js"></script>
71         
72         <script type="text/javascript">
73             Pman.debug = true;
74         </script>
75         
76     </body>
77 </html>