Added css animations on reload Co-authored-by: LQ63 <lkhermann@web.de> Reviewed-on: #27 Reviewed-by: Janis <janis-e@gmx.de> Co-authored-by: lq64 <lq@blackhole.local> Co-committed-by: lq64 <lq@blackhole.local>
13 lines
400 B
HTML
13 lines
400 B
HTML
@(sessions: List[controllers.sessions.PlayerSession])
|
|
|
|
@main("Sessions") {
|
|
<div id="sessions">
|
|
<h1>Knockout Whist sessions</h1>
|
|
<p id="textanimation">Please select your session to jump inside the game!</p>
|
|
@for(session <- sessions) {
|
|
<a id="textanimation" href="@routes.HomeController.ingame(session.id.toString)">@session.name</a><br>
|
|
}
|
|
</div>
|
|
}
|
|
|