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

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

Installed help-balloons plugin.
Adjust security config to allow javascript and help-balloons folders.
Add "Repeat password" to change password.
Detailed Entry views, including only allow user to edit their own entries.
Adjust Entry constraints.
Add comments to layouts/main.gsp.
Work on TaskDetailed? view to show entry durations and allow editing.
Entry duration formatting to CSS and increased base font size to 14px.

File size: 1.7 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 class="logo" style="text-align: center; width: 980px; height: 220px">
21                <img src="${createLinkTo(dir:'images',file:'logo.png')}"
22                alt="gnuMims" />
23                <g:render template="/adminmenubar" />
24       
25                </div> -->
26                <div id="Header">
27                    <a href="http://www.gnumims.org" id=HeaderLink></a>
28                </div>
29                <div class="appControl">
30                    <g:render template="/adminmenubar" />
31                </div>
32                <!-- Body wrapper div for IE -->
33                <div style="text-align: center; width: 980px">
34                    <g:layoutBody />
35                </div><!--IE wrapper-->
36            </div><!--content-->
37            <div id="bottom">
38            </div>
39        </div>
40    </body>     
41</html>
Note: See TracBrowser for help on using the repository browser.