Files
initializr/initializr-web/src/main/resources/templates/gs.mustache
Stephane Nicoll fe7650f2c8 Upgrade to Spring Boot 2.0.0
This commit upgrades to Spring Boot 2.0.0.

Please note that this commit does not change metrics names to use new
features of Micrometer yet (see gh-526)

Closes gh-611
2018-03-01 08:00:49 +01:00

51 lines
1.1 KiB
Plaintext

<!DOCTYPE html>
<html>
<head>
<title>Spring Initializr</title>
<link rel="stylesheet"
href="/css/bootstrap.min.css"/>
</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}}
<li><a href="/gs/{{repo}}">{{name}}}</a></li>
{{/repos}}
</ul>
</div>
</div>
</body>
</html>