GRAILS-1019: Allowing expressions to be used with the 'disabled' attribute for g...
[grails.git] / src / war / index.gsp
blob3676de501e2d8372d371e2d6dbf11be254bcaa2e
1 <html>\r
2     <head>\r
3         <title>Welcome to Grails</title>\r
4                 <meta name="layout" content="main" />\r
5     </head>\r
6     <body>\r
7         <h1 style="margin-left:20px;">Welcome to Grails</h1>\r
8         <p style="margin-left:20px;width:80%">Congratulations, you have successfully started your first Grails application! At the moment\r
9         this is the default page, feel free to modify it to either redirect to a controller or display whatever\r
10         content you may choose. Below is a list of controllers that are currently deployed in this application,\r
11         click on each to execute its default action:</p>\r
12         <div class="dialog" style="margin-left:20px;width:60%;">\r
13             <ul>\r
14               <g:each var="c" in="${grailsApplication.controllerClasses}">\r
15                     <li class="controller"><g:link controller="${c.logicalPropertyName}">${c.fullName}</g:link></li>\r
16               </g:each>\r
17             </ul>\r
18         </div>\r
19     </body>\r
20 </html>