Skip to content

Commit

Permalink
Add GGTS welcome page.
Browse files Browse the repository at this point in the history
  • Loading branch information
pledbrook committed Sep 14, 2012
1 parent 6f07c3f commit aa1a054
Show file tree
Hide file tree
Showing 3 changed files with 47 additions and 0 deletions.
1 change: 1 addition & 0 deletions grails-app/conf/UrlMappings.groovy
Expand Up @@ -10,6 +10,7 @@ class UrlMappings {
}

"/products/$action"(controller: "product")
"/products/ggts/welcome"(controller: "product", action: "ggtsWelcome")

"/start"(controller: "content", action: "gettingStarted")

Expand Down
Expand Up @@ -3,4 +3,5 @@ package org.grails.content
class ProductController {

def ggts() {}
def ggtsWelcome() {}
}
45 changes: 45 additions & 0 deletions grails-app/views/product/ggtsWelcome.gsp
@@ -0,0 +1,45 @@
<head>
<title>Groovy/Grails Tool Suite</title>
<meta name="layout" content="subpage">
<style>
#contentBody ul {
height: 3em;
list-style-type: none;
padding-left: 1em;
margin: 2.5em 0;
}
#contentBody ul li {
margin: 1em 0;
}
#contentBody ul li div.icon {
float: left;
padding: 0;
}
#contentBody ul li div {
height: 60px;
margin: 0.1em 0;
padding-top: 15px;
}
</style>
</head>
<body>
<h1>Welcome to Groovy/Grails Tool Suite</h1>
<p>Thank you for installing Groovy/Grails Tool Suite.</p>
<ul>
<li>
<div class="icon"><a href="http://forum.springsource.org/forumdisplay.php?f=32"><g:img height="75" width="93" alt="" dir="images" file="talk-bubbles-trans.gif" /></a></div>
<div><a href="http://forum.springsource.org/forumdisplay.php?f=32">Community Forums</a>: to discuss GGTS features and usage with other community members</div>
</li>
<li>
<div class="icon"><a href="https://issuetracker.springsource.com/browse/STS"><g:img height="75" width="93" alt="" dir="images" file="tools-trans.gif" /></a></div>
<div><a href="https://issuetracker.springsource.com/browse/STS">JIRA</a>: to report bugs, problems and request new features</td>
</li>
<li>
<div class="icon"><a href="http://blog.springsource.com/category/tools/"><g:img height="75" width="93" alt="" dir="images" file="document-signed-trans2.gif" /></a></div>
<div><a href="http://blog.springsource.com/category/tools/">GGTS blog</a> to read about the latest news and tips for using GGTS</div>
</li>
</ul>
</body>

0 comments on commit aa1a054

Please sign in to comment.