Files
gralias/components/cardcounter.html
2025-06-29 09:18:52 +03:00

10 lines
331 B
HTML

{{define "cardcounter"}}
<div class="flex justify-center space-x-2">
<p class="text-blue-400">Blue cards left: {{.BlueCounter}} </p>
<p class="text-red-400">Red cards left: {{.RedCounter}} </p>
<hr>
<p>Limit of cards to open: {{.ThisTurnLimit}} </p>
<p>Opened this turn: {{.OpenedThisTurn}} </p>
</div>
{{end}}