Files
golias/components/room.html
2025-05-07 11:36:13 +03:00

17 lines
304 B
HTML

{{define "room"}}
<div id="hello-user">
<p>Hello {{.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" .}}
</div>
{{end}}