Skip to content

Commit a0ec7e0

Browse files
vobisvobis
authored andcommitted
zmiana z eclipse
1 parent 93f1dec commit a0ec7e0

2 files changed

Lines changed: 71 additions & 35 deletions

File tree

Lines changed: 35 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,35 @@
1-
2-
<!DOCTYPE html>
3-
<html>
4-
<head>
5-
<#include "header.ftl">
6-
</head>
7-
8-
<body>
9-
10-
<#include "nav.ftl">
11-
12-
<div class="jumbotron text-center">
13-
<div class="container">
14-
<a href="/" class="lang-logo">
15-
<img src="/lang-logo.png">
16-
</a>
17-
<h1>Getting Started with Java on Heroku</h1>
18-
<p>This is a sample Java application deployed to Heroku. It's a reasonably simple app - but a good foundation for understanding how to get the most out of the Heroku platform.</p>
19-
<a type="button" class="btn btn-lg btn-default" href="https://devcenter.heroku.com/articles/getting-started-with-java"><span class="glyphicon glyphicon-flash"></span> Getting Started with Java</a>
20-
<a type="button" class="btn btn-lg btn-primary" href="https://github.com/heroku/java-getting-started"><span class="glyphicon glyphicon-download"></span> Source on GitHub</a>
21-
</div>
22-
</div>
23-
24-
<div class="container">
25-
<div class="alert alert-info text-center" role="alert">
26-
To deploy your own copy, and learn the fundamentals of the Heroku platform, head over to the <a href="https://devcenter.heroku.com/articles/getting-started-with-java" class="alert-link">Getting Started with Java on Heroku</a> tutorial.
27-
</div>
28-
<hr>
29-
30-
31-
</div>
32-
33-
34-
</body>
35-
</html>
1+
2+
<!DOCTYPE html>
3+
<html>
4+
<head>
5+
<#include "header.ftl">
6+
</head>
7+
8+
<body>
9+
10+
<#include "nav-hello.ftl">
11+
12+
<div class="jumbotron text-center">
13+
<div class="container">
14+
<a href="/" class="lang-logo">
15+
<img src="/lang-logo.png">
16+
</a>
17+
<h1>Getting Started with Java on Heroku</h1>
18+
<p>This is a sample Java application deployed to Heroku. It's a reasonably simple app - but a good foundation for understanding how to get the most out of the Heroku platform.</p>
19+
<a type="button" class="btn btn-lg btn-default" href="https://devcenter.heroku.com/articles/getting-started-with-java"><span class="glyphicon glyphicon-flash"></span> Getting Started with Java</a>
20+
<a type="button" class="btn btn-lg btn-primary" href="https://github.com/heroku/java-getting-started"><span class="glyphicon glyphicon-download"></span> Source on GitHub</a>
21+
</div>
22+
</div>
23+
24+
<div class="container">
25+
<div class="alert alert-info text-center" role="alert">
26+
To deploy your own copy, and learn the fundamentals of the Heroku platform, head over to the <a href="https://devcenter.heroku.com/articles/getting-started-with-java" class="alert-link">Getting Started with Java on Heroku</a> tutorial.
27+
</div>
28+
<hr>
29+
30+
31+
</div>
32+
33+
34+
</body>
35+
</html>
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
<nav class="navbar navbar-default navbar-static-top navbar-inverse">
2+
<div class="container">
3+
<ul class="nav navbar-nav">
4+
<li >
5+
<a href="/"><span class="glyphicon glyphicon-home"></span> Home</a>
6+
</li>
7+
<li class="active">
8+
<a href="hello"><span class="glyphicon glyphicon-user"></span> Hello</a>
9+
</li>
10+
<li>
11+
<a href="https://devcenter.heroku.com/articles/how-heroku-works"><span class="glyphicon glyphicon-user"></span> How Heroku Works</a>
12+
</li>
13+
<li class="dropdown">
14+
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-expanded="false"><span class="glyphicon glyphicon-info-sign"></span> Getting Started Guides <span class="caret"></span></a>
15+
<ul class="dropdown-menu" role="menu">
16+
<li><a href="https://devcenter.heroku.com/articles/getting-started-with-ruby">Getting Started with Ruby on Heroku</a></li>
17+
<li><a href="https://devcenter.heroku.com/articles/getting-started-with-nodejs">Getting Started with Node on Heroku</a></li>
18+
<li><a href="https://devcenter.heroku.com/articles/getting-started-with-php">Getting Started with PHP on Heroku</a></li>
19+
<li><a href="https://devcenter.heroku.com/articles/getting-started-with-python">Getting Started with Python on Heroku</a></li>
20+
<li><a href="https://devcenter.heroku.com/articles/getting-started-with-java">Getting Started with Java on Heroku</a></li>
21+
<li><a href="https://devcenter.heroku.com/articles/getting-started-with-go">Getting Started with Go on Heroku</a></li>
22+
<li><a href="https://devcenter.heroku.com/articles/getting-started-with-clojure">Getting Started with Clojure on Heroku</a></li>
23+
<li><a href="https://devcenter.heroku.com/articles/getting-started-with-scala">Getting Started with Scala on Heroku</a></li>
24+
<li class="divider"></li>
25+
<li><a href="https://devcenter.heroku.com/articles/getting-started-with-heroku-and-connect-without-local-dev">Getting Started on Heroku with Heroku Connect</a></li>
26+
<li><a href="https://devcenter.heroku.com/articles/getting-started-with-jruby">Getting Started with Ruby on Heroku (Microsoft Windows)</a></li>
27+
</ul>
28+
</li>
29+
</ul>
30+
<ul class="nav navbar-nav navbar-right">
31+
<li class="navbar-right">
32+
<a href="https://devcenter.heroku.com"><span class="glyphicon glyphicon-book"></span> Heroku Dev Center</a>
33+
</li>
34+
</ul>
35+
</div>
36+
</nav>

0 commit comments

Comments
 (0)