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

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

Start creating 'Detail views for Task. Add to BootStrap?. Small change to css.

  • Property svn:executable set to *
File size: 724 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="listDetailed">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="${appCore}">
18                <div class="errors">
19                    <g:renderErrors bean="${appCore}" as="list" />
20                </div>
21            </g:hasErrors>
22           
23        </div>
24    </body>
25</html>
Note: See TracBrowser for help on using the repository browser.