source: trunk/grails-app/views/layouts/main.gsp @ 1119

Last change on this file since 1119 was 1119, checked in by work@…, 12 years ago
  • initial version of the setup assistant
  • Property svn:keywords set to Author Date Rev
File size: 1.9 KB
Line 
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">var baseUrl = '${resource(dir: '')}';</script>
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')}"/>
13        <g:layoutHead/>
14        <script type="text/javascript" src="${resource(dir: 'js', file: 'disableKeys.js')}"></script>
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>
17        <g:if env="development"><script type="text/javascript" src="${resource(dir: 'js', file: 'development.js')}"></script></g:if>
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"/>
24                <g:render template="/common/info"/>
25        </div>
26        <div id="content"><g:layoutBody/></div>
27        <div id="footer">
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>.
29                <g:if env="development">( style: <%=session.style%> )</g:if>
30        </div>
31        <img src="${resource(dir: 'images', file: 'beta-stamp.png')}" alt="beta">
32</div>
33</body>
34</html>
Note: See TracBrowser for help on using the repository browser.