blob: a0b4035d15601e4a7d65ff96c44779396b626c89 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
@args (String username)
@layout.template("Index", RockerContent.NONE, RockerContent.NONE) -> {
<h1>Welcome to Kloud <i>@username</i>!</h1>
@if(username.length() > 0) {
<a href="/logout">
<button>Logout</button>
</a>
} else {
<a href="/login">
<button>Login</button>
</a>
}
<a href="/files/">
<button>Files</button>
</a>
}
|