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

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

Hopefully a CSS fix for IE

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:'public.css')}" />
5        <link rel="shortcut icon" href="${createLinkTo(dir:'images',file:'gnuMimsIcon.ico')}" type="image/x-icon" />
6        <g:layoutHead />
7        <g:javascript library="application" />
8    </head>
9    <body>
10    <div id="wrapper" style="height: 100%;">
11    <div id="top">
12    </div>
13    <div id="content" align="center">
14        <div id="spinner" class="spinner" style="display:none;">
15            <img src="${createLinkTo(dir:'images',file:'spinner.png')}" alt="Spinner" />
16        </div> 
17        <!-- <div class="logo" style="text-align: center; width: 980px; height: 220px">
18          <img src="${createLinkTo(dir:'images',file:'logo.png')}"
19        alt="gnuMims" />
20        <g:render template="/adminmenubar" />
21
22        </div> -->
23        <div id="Header">
24        </div>
25        <div class="appControl">
26            <g:render template="/adminmenubar" />
27        </div>
28        <!-- Body wrapper div for IE -->
29        <div style="text-align: center; width: 980px">
30            <g:layoutBody />
31        </div>
32    </div>
33    <div id="bottom">
34    </div>
35    </div>
36    </body>     
37</html>
Note: See TracBrowser for help on using the repository browser.