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