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

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

Some CSS adjustments to text color, img border, remove body height:100%, add buttons input.add to CSS.
Move admin stuff to AppAdmin? to make it very clear that it is not for daily use.
TaskDetailed? list and delete now use the IsActive? attribute.
Remove Task.comment size constraint.
Add more help-ballons to TaskDetailed? create.
Clean loose comments from main.gsp and auth.gsp
Use pretty pictures in TaskDetailed? views instead of Edit and Show words.

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: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                <!-- Body wrapper div for IE -->
27                <div style="text-align: center; width: 980px">
28                    <g:layoutBody />
29                </div><!--IE wrapper-->
30            </div><!--content-->
31            <div id="bottom">
32            </div>
33        </div>
34    </body>     
35</html>
Note: See TracBrowser for help on using the repository browser.