Commit bfccaefc authored by Grzegorz Pietrusza's avatar Grzegorz Pietrusza

implement simple page

parent bdb3cc33
...@@ -37,7 +37,7 @@ public class CTFApplication extends Application<ApplicationConfiguration> { ...@@ -37,7 +37,7 @@ public class CTFApplication extends Application<ApplicationConfiguration> {
@Override @Override
public void initialize(final Bootstrap<ApplicationConfiguration> bootstrap) public void initialize(final Bootstrap<ApplicationConfiguration> bootstrap)
{ {
bootstrap.addBundle(new AssetsBundle("/assets", "/", "index.html")); bootstrap.addBundle(new AssetsBundle("/assets", "/page", "index.html"));
// Stream.of("org.webjars.npm", "org.webjars.bower") // Stream.of("org.webjars.npm", "org.webjars.bower")
// .map(WebJarBundle::new) // .map(WebJarBundle::new)
// .forEach(bootstrap::addBundle); // .forEach(bootstrap::addBundle);
......
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>CTF</title>
</head>
<body>
</body>
</html>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment