13 lines
262 B
HTML
13 lines
262 B
HTML
{{define "room"}}
|
|
<div class="flex h-screen">
|
|
<div id="hello-user">
|
|
<p>Hello {{.Username}}</p>
|
|
</div>
|
|
<!-- Left Panel -->
|
|
{{template "teampew" "blue"}}
|
|
{{template "cardtable" .}}
|
|
<!-- Right Panel -->
|
|
{{template "teampew" "red"}}
|
|
</div>
|
|
{{end}}
|