source: branches/TaskRewrite/src/grails-app/views/layouts/main.gsp @ 80

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

Make the header image link to www.gnumims.org

File size: 1.4 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:javascript library="application" />
8    </head>
9   
10    <!-- Added g:pageProperty so that onload in each page works -->
11    <body onload="<g:pageProperty name='body.onload'/>">
12    <div id="wrapper" style="height: 100%;">
13    <div id="top">
14    </div>
15    <div id="content" align="center">
16        <div id="spinner" class="spinner" style="display:none;">
17            <img src="${createLinkTo(dir:'images',file:'spinner.gif')}" alt="Spinner" />
18        </div> 
19        <!-- <div class="logo" style="text-align: center; width: 980px; height: 220px">
20          <img src="${createLinkTo(dir:'images',file:'logo.png')}"
21        alt="gnuMims" />
22        <g:render template="/adminmenubar" />
23
24        </div> -->
25        <div id="Header">
26            <a href="http://www.gnumims.org" id=HeaderLink></a>
27        </div>
28        <div class="appControl">
29             <g:render template="/adminmenubar" />
30        </div>
31        <!-- Body wrapper div for IE -->
32        <div style="text-align: center; width: 980px">
33            <g:layoutBody />
34        </div>
35    </div>
36    <div id="bottom">
37    </div>
38    </div>
39    </body>     
40</html>
Note: See TracBrowser for help on using the repository browser.