[23] | 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"> |
---|
[96] | 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"/> |
---|
[708] | 9 | <g:javascript library="jquery" plugin="jquery"/> |
---|
[481] | 10 | <script type="text/javascript">var baseUrl = '${resource(dir: '')}';</script> |
---|
[954] | 11 | <script src="${createLinkTo(dir: 'js', file: 'jquery-ui-1.8.5.custom.min.js')}" type="text/javascript"></script> |
---|
| 12 | <link rel="stylesheet" href="${createLinkTo(dir: 'css/cupertino', file: 'jquery-ui-1.8.5.custom.css')}"/> |
---|
[96] | 13 | <g:layoutHead/> |
---|
[588] | 14 | <script type="text/javascript" src="${resource(dir: 'js', file: 'disableKeys.js')}"></script> |
---|
[96] | 15 | <script type="text/javascript" src="${resource(dir: 'js', file: 'login_panel.js')}"></script> |
---|
| 16 | <script type="text/javascript" src="${resource(dir: 'js', file: 'topnav.js')}"></script> |
---|
[871] | 17 | <g:if env="development"><script type="text/javascript" src="${resource(dir: 'js', file: 'development.js')}"></script></g:if> |
---|
[96] | 18 | </head> |
---|
| 19 | <body> |
---|
| 20 | <g:render template="/common/login_panel"/> |
---|
| 21 | <div class="container"> |
---|
| 22 | <div id="header"> |
---|
| 23 | <g:render template="/common/topnav"/> |
---|
[1080] | 24 | <g:render template="/common/info"/> |
---|
[96] | 25 | </div> |
---|
| 26 | <div id="content"><g:layoutBody/></div> |
---|
| 27 | <div id="footer"> |
---|
[1065] | 28 | Copyright © 2008 - <g:formatDate format="yyyy" date="${new Date()}"/> NuGO, NMC and NBIC. All rights reserved. For more information go to <a href="http://dbnp.org">http://dbnp.org</a>. |
---|
[613] | 29 | <g:if env="development">( style: <%=session.style%> )</g:if> |
---|
[281] | 30 | </div> |
---|
[969] | 31 | <img src="${resource(dir: 'images', file: 'beta-stamp.png')}" alt="beta"> |
---|
[96] | 32 | </div> |
---|
| 33 | </body> |
---|
[4] | 34 | </html> |
---|