source: branches/TaskRewrite/src/grails-app/views/appCore/home.gsp @ 59

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

Lots of changes to setup Acegi, should be complete with all current pages secured.
Added CSS and PersonGroup? and PersonGroupType?.
Adjust BootStrap? to suite.
Add Home and Admin pages.

  • Property svn:executable set to *
File size: 714 bytes
Line 
1<html>
2<head>
3<meta http-equiv="Content-Type" content="text/html;
4      charset=UTF-8"/>
5<meta name="layout" content="main" />
6<title>Home</title>
7</head>
8    <body>
9        <div class="nav">
10            <span class="menuButton"><g:link class="list" controller="task" action="list">Tasks</g:link></span>
11
12        </div>
13        <div class="body">
14            <g:if test="${flash.message}">
15                <div class="message">${flash.message}</div>
16            </g:if>
17            <g:hasErrors bean="${person}">
18                <div class="errors">
19                    <g:renderErrors bean="${person}" as="list" />
20                </div>
21            </g:hasErrors>
22           
23        </div>
24    </body>
25</html>
Note: See TracBrowser for help on using the repository browser.