[814] | 1 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" |
---|
| 2 | "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
---|
| 3 | <html xmlns="http://www.w3.org/1999/xhtml" lang="en-EN" xml:lang="en-EN"> |
---|
| 4 | <head> |
---|
| 5 | <title><g:layoutTitle default="Grails" /></title> |
---|
| 6 | <link rel="stylesheet" href="${resource(dir:'css',file:session.style+'.css')}" /> |
---|
| 7 | <link rel="stylesheet" href="${resource(dir:'css',file:'login_panel.css')}" /> |
---|
| 8 | <link rel="shortcut icon" href="${resource(dir:'images',file:'favicon.ico')}" type="image/x-icon" /> |
---|
| 9 | <g:javascript library="jquery" plugin="jquery"/> |
---|
| 10 | <script type="text/javascript" src="${resource(dir: 'js', file: 'disableKeys.js')}"></script> |
---|
| 11 | <script type="text/javascript" src="${resource(dir: 'js', file: 'login_panel.js')}"></script> |
---|
| 12 | <script type="text/javascript" src="${resource(dir: 'js', file: 'topnav.js')}"></script> |
---|
| 13 | |
---|
| 14 | <nh:nimblecore/> |
---|
| 15 | <nh:nimbleui/> |
---|
| 16 | <nh:growl/> |
---|
| 17 | |
---|
| 18 | <script type="text/javascript"> |
---|
| 19 | <njs:flashgrowl/> |
---|
| 20 | </script> |
---|
| 21 | |
---|
| 22 | <script type="text/javascript">var baseUrl = '${resource(dir: '')}';</script> |
---|
[1329] | 23 | <script src="${createLinkTo(dir: 'js', file: 'jquery-ui-1.8.7.custom.min.js')}" type="text/javascript"></script> |
---|
| 24 | <link rel="stylesheet" href="${createLinkTo(dir: 'css/cupertino', file: 'jquery-ui-1.8.7.custom.css')}"/> |
---|
[814] | 25 | <link rel="stylesheet" href="${resource(dir:'css',file:'nimble.css')}"/> |
---|
| 26 | |
---|
| 27 | <g:layoutHead/> |
---|
| 28 | |
---|
| 29 | |
---|
| 30 | </head> |
---|
| 31 | |
---|
| 32 | <body> |
---|
| 33 | <g:render template="/common/login_panel"/> |
---|
| 34 | <div class="container"> |
---|
| 35 | <div id="header"> |
---|
| 36 | <g:render template="/common/topnav"/> |
---|
| 37 | </div> |
---|
| 38 | <div id="content"><g:layoutBody/></div> |
---|
| 39 | <div id="footer"> |
---|
| 40 | Copyright © 2008 - <g:formatDate format="yyyy" date="${new Date()}"/> NMC & NuGO. All rights reserved. |
---|
| 41 | <g:if env="development">( style: <%=session.style%> )</g:if> |
---|
| 42 | </div> |
---|
| 43 | <g:if env="development"><g:render template="/common/feedback"/></g:if> |
---|
| 44 | </div> |
---|
| 45 | |
---|
| 46 | <n:sessionterminated/> |
---|
| 47 | |
---|
| 48 | </body> |
---|
| 49 | |
---|
| 50 | </html> |
---|