17 lines
314 B
HTML
17 lines
314 B
HTML
{{define "room"}}
|
|
<div id="hello-user">
|
|
<p>Hello {{.State.Username}}</p>
|
|
</div>
|
|
<hr />
|
|
<div class="flex justify-center">
|
|
<!-- Left Panel -->
|
|
{{template "teampew" "blue"}}
|
|
<!-- Right Panel -->
|
|
{{template "teampew" "red"}}
|
|
</div>
|
|
<hr />
|
|
<div id="cardtable">
|
|
{{template "cardtable" .Room}}
|
|
</div>
|
|
{{end}}
|