source: trunk/grails-app/views/appCore/manager.gsp @ 110

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

IE strikes again, small work around applied.

  • Property svn:executable set to *
File size: 794 bytes
Line 
1<html>
2    <head>
3        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
4        <meta name="layout" content="main" />
5        <title>Admin</title>
6    </head>
7    <body>
8        <div class="nav">
9            <span class="menuButton"><a class="home" href="${createLinkTo(dir:'')}">Home</a></span>
10            <span class="menuButton"><g:link controller="person" action="create">New Person</g:link></span>
11            <span class="menuButton"><g:link controller="person" action="list">Person List</g:link></span>
12        </div>
13        <div class="body">
14            <h1>Welcome to Manager</h1>
15            <g:if test="${flash.message}">
16                <div class="message">${flash.message}</div>
17            </g:if>
18        </div>
19    </body>
20</html>
Note: See TracBrowser for help on using the repository browser.