init
[Pman.Core] / 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         <title>{appName}</title>
10         <link rel="shortcut icon" href="./Pman.ico" type="image/vnd.microsoft.icon"/>
11         
12         <link rel="stylesheet" type="text/css" href="/roojs1/cssX/roojs-all.css" />
13         
14         {outputCSSIncludes()}
15         
16                     
17    
18     <style>
19      #loading-logo-bottom,
20      #loading-logo-center,
21      #loading-logo-tile,
22      #loading-logo-tile-top
23      {
24         width:100%;
25         height:100%;
26         position:absolute;
27        
28         left:0;
29         top:0;
30         background-position:50% 50%;
31     }
32     
33     /* background-tile.jpg */
34     #loading-logo-tile {
35          z-index:1000;
36     }
37     
38     /* background.jpg */
39     #loading-logo-center
40     {
41         background-position:50% 0;
42         background-repeat:no-repeat; 
43         z-index:1001;
44     }
45     /* background-tile-top.jpg */
46     #loading-logo-tile-top
47     {
48         background-position:50% 0;
49         z-index:1002;
50         background-repeat:repeat-x; 
51         
52     }
53     /* background_bottom_logo.gif */
54     #loading-logo-bottom
55     {
56         background-position:50% 100%;
57         background-repeat:no-repeat; 
58         z-index:1003;
59     }
60     </style>
61      </head>
62     <body class="ytheme-gray">  
63          <!--background:#F8ECB2;-->   
64         <div flexy:if="hasBg(#background-tile.jpg#)" 
65             id="loading-logo-tile"
66             style="background-image:url({rootURL}/Pman/{appNameShort}/templates/images/background-tile.jpg);"></div>
67         
68         <div flexy:if="hasBg(#background-tile-top.jpg#)"  
69             id="loading-logo-tile-top"
70             style="background-image:url({rootURL}/Pman/{appNameShort}/templates/images/background-tile-top.jpg);"></div>
71         
72         <div flexy:if="hasBg(#background.jpg#)" 
73             id="loading-logo-center"
74             style="background-image:url({rootURL}/Pman/{appNameShort}/templates/images/background.jpg);"></div>
75         
76         <div flexy:if="hasBg(#background_bottom_logo.gif#)" 
77             id="loading-logo-bottom"
78             style="background-image:url({rootURL}/Pman/{appNameShort}/templates/images/background_bottom_logo.gif);"></div>
79         
80         
81         <div id="loading-mask"
82             style="width:1;height:1;position:absolute;z-index:1000;left:0;top:0;">&#160;</div>
83         <div id="loading">
84             <div class="loading-indicator" id="loading-text">&#160;Loading...(This may take a few seconds)</div>
85         </div>
86 {if:isDev}                  
87         <script type="text/javascript" src="/roojs1/roojs-debug.js"></script>  
88          
89 {else:}                  
90         <script type="text/javascript" src="/roojs1/roojs-all.js"></script>
91                  
92 {end:}                  
93         <flexy:toJavascript 
94             baseURL="baseURL" 
95             rootURL="rootURL" 
96             isDev="isDev"
97             serverName="serverName" 
98             appLang="lang"
99             appName="appName"
100             appNameShort="appNameShort"
101             appOwnerCompanyId="company.id"
102              
103             AppLinkError="linkFail"
104             AppTrackOnLoad="onloadTrack"
105             
106             showNewPass="showNewPass"
107             allowSignup="allowSignup"
108             
109             logoPrefix="logoPrefix"
110             
111             AppModules="appModules"
112             AppVersion="appVersion"
113         >
114         
115         <script type="text/javascript">
116             Ext=Roo; // bc
117             Roo.BLANK_IMAGE_URL =  "/roojs1/images/gray/s.gif";
118             Roo.rootURL = '/roojs1/';
119         </script>
120         
121         {outputJavascriptIncludes()}
122              
123         <!-- used by App.php in Builder - to enable loading of code/applicaiton on the fly -->
124         {foreach:builderJs,js}
125             <script type="text/javascript" src="{baseURL}/Builder/Code/{js}.js"></script>    
126         {end:} 
127                 
128                 
129         <div id="title" class="x-layout-inactive-content logoblock">
130             <img id="headerInformation-company-logo" 
131                 src="{rootURL}/Pman/{appNameShort}/templates/images/logo_small.gif" height="25"/>
132             <div id="headerInformation">Some other details</div>
133             <img id="headerInformation-applogo" 
134                 src="{rootURL}/Pman/{appNameShort}/templates/images/logo_small.gif" height="25"/>
135             
136         </div>
137          
138           
139            
140         <div id="mainlist" class="x-layout-inactive-content">
141             <p>main list</p>
142                 
143         </div>
144           
145     </body>
146 </html>
147