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

Last change on this file since 342 was 342, checked in by duh, 14 years ago
  • restyled wizard tabs
  • made info and todo boxes only appear in development, not in production and test
  • Property svn:keywords set to Date Rev Author
File size: 1.5 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"/>
10        <script src="${createLinkTo(dir: 'js', file: 'jquery-ui-1.8rc3.custom.min.js')}" type="text/javascript"></script>
11        <link rel="stylesheet" href="${createLinkTo(dir: 'css/cupertino', file: 'jquery-ui-1.8rc3.custom.css')}"/>
12        <g:layoutHead/>
13        <script type="text/javascript" src="${resource(dir: 'js', file: 'login_panel.js')}"></script>
14        <script type="text/javascript" src="${resource(dir: 'js', file: 'topnav.js')}"></script>
15        <g:if env="development"><script type="text/javascript" src="${resource(dir: 'js', file: 'development.js')}"></script></g:if>
16</head>
17<body>
18<g:render template="/common/login_panel"/>
19<div class="container">
20        <div id="header">
21                <g:render template="/common/topnav"/>
22        </div>
23        <div id="content"><g:layoutBody/></div>
24        <div id="footer">
25                Copyright © 2008 - <g:formatDate format="yyyy" date="${new Date()}"/> NMC & NuGO. All rights reserved.
26                ( style: <%=session.style%> )
27        </div>
28        <g:if env="development"><g:render template="/common/feedback"/></g:if>
29</div>
30</body>
31</html>
Note: See TracBrowser for help on using the repository browser.