Files
initializr/templates/gs.html
Andy Piper d1c98423a3 Cleanup for spring.io, update docs
This commit contains a number of changes, no functional difference in
the app but a general cleanup of look and docs:

- removed the Gemfile which is now redundant, Cloud Foundry CLI is no
longer a Ruby app
- updated various parts of the README to reflect changes to Spring Boot
CLI (local flag no longer exists, etc) and new CF deployment procedure.
- fixed references to www.springsource.com -> spring.io throughout web
content
- added favicon reflecting new Spring branding
- updated github URLs springsource -> spring-projects
2014-04-11 05:19:02 +01:00

50 lines
1.1 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<title>Spring Initializr</title>
<link rel="stylesheet"
href="/css/bootstrap.min.css"/>
<link rel="shortcut icon" type="image/x-icon" href="/img/favicon.png"/>
</head>
<body>
<div class="container">
<div class="navbar">
<div class="navbar-inner">
<a class="brand"
href="https://spring.io">
Spring
</a>
<ul class="nav">
<li>
<a href="/spring.zip">
Download
</a>
</li>
<li>
<a href="/">
Projects
</a>
</li>
<li>
<a href="/installer">
Installer
</a>
</li>
<li>
<a href="/gs">
Getting Started
</a>
</li>
</ul>
</div>
</div>
<h1>Getting Started</h1>
<div>
<ul><% repos.each { %>
<li><a href="/gs/${it.repo}">${it.name}</a></li><% } %>
</ul>
</div>
</div>
</body>
</html>