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

Last change on this file since 48 was 46, checked in by duh, 14 years ago
  • fixed javascript tags in main layout
  • TODO! nimble is now available in the grails repo, so friday I will fix this by doing:
    • remove the intient grails repo
    • remove local nimble installation files
    • remove nimble plugin
    • install nimble plugin from the grails repo
    • reconfigure nimble
    • commit :)
  • so some things in the nimble interface are not properly working now, but that will be fixed tomorrow...
File size: 1.2 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  <g:layoutHead />
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 </head>
14 <body>
15  <g:render template="/common/login_panel" />
16  <div class="container">
17   <div id="header">
18    <g:render template="/common/topnav" />
19   </div>
20   <div id="content"><g:layoutBody /></div>
21   <div id="footer">
22     Copyright © 2008 - <g:formatDate format="yyyy" date="${new Date()}"/> NMC & NuGO. All rights reserved.
23     ( style: <%=session.style%>,
24     <a href="?showSource=true">show page source</a>)</div>
25  </div>
26 </body>
27</html>
Note: See TracBrowser for help on using the repository browser.