1 parent fbe07d1 commit b032838Copy full SHA for b032838
3 files changed
src/main/resources/static/buildpacks-logo.svg
src/main/resources/static/favicon.png
2.35 KB
src/main/resources/templates/index.html
@@ -0,0 +1,28 @@
1
+<!DOCTYPE html>
2
+<html lang="en">
3
+<head>
4
+ <meta charset="UTF-8">
5
+ <title>Buildpacks.io Java Sample</title>
6
+ <link rel="icon" type="image/png" href="/favicon.png">
7
+ <style>
8
+ html, body {
9
+ font-family: sans-serif;
10
+ margin: 0;
11
+ height: 100%;
12
+ }
13
+ .content-centered {
14
+ display: flex;
15
+ align-items: center;
16
+ justify-content: center;
17
18
+ </style>
19
+</head>
20
+<body>
21
+ <div class="content-centered" style="margin: 0 auto; flex-direction: column; width: 67%; height: 100%;">
22
+ <div class="content-centered">
23
+ <a href="https://buildpacks.io"><img src="/buildpacks-logo.svg" alt="Buildpacks.io Logo" style="width:50vw;"></a>
24
+ </div>
25
+ <h1>Hello, Buildpacker!</h1>
26
27
+</body>
28
+</html>
0 commit comments