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

Last change on this file since 110 was 110, checked in by gav, 15 years ago

IE strikes again, small work around applied.

File size: 1.2 KB
Line 
1<html>
2    <head>
3        <title><g:layoutTitle default="gnuMims" /></title>
4        <link rel="stylesheet" href="${createLinkTo(dir:'css',file:'main.css')}" />
5        <link rel="shortcut icon" href="${createLinkTo(dir:'images',file:'gnuMimsIcon.ico')}" type="image/x-icon" />
6        <g:layoutHead />
7        <g:helpBalloons/>
8        <g:javascript library="application" />
9    </head>
10   
11    <!-- Added g:pageProperty so that onload in each page works -->
12    <body onload="<g:pageProperty name='body.onload'/>">
13        <div id="wrapper" style="height: 100%;">
14            <div id="top">
15            </div>
16            <div id="content" align="center">
17                <div id="spinner" class="spinner" style="display:none;">
18                    <img src="${createLinkTo(dir:'images',file:'spinner.gif')}" alt="Spinner" />
19                </div> 
20                <div id="Header">
21                    <a href="http://www.gnumims.org" id=HeaderLink></a>
22                </div>
23                <div class="appControl">
24                    <g:render template="/adminmenubar" />
25                </div>
26
27                    <g:layoutBody />
28
29            </div><!--content-->
30            <div id="bottom">
31            </div>
32        </div>
33    </body>     
34</html>
Note: See TracBrowser for help on using the repository browser.