aboutsummaryrefslogtreecommitdiffstats
path: root/templates/bingo.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/bingo.html')
-rw-r--r--templates/bingo.html6
1 files changed, 4 insertions, 2 deletions
diff --git a/templates/bingo.html b/templates/bingo.html
index e00543c..1305b9a 100644
--- a/templates/bingo.html
+++ b/templates/bingo.html
@@ -1,11 +1,12 @@
{{ define "title" }}Bingo{{ end }}
{{ define "content" }}
-<table>
+<main>
+<table class="bingoCard">
<tbody>
{{ range .Rows }}
<tr>
{{ range . }}
- <td class="{{ if .Checked }}checked{{ end }} {{ if not .Checkable }}locked{{ end }}">{{ .Text }}</td>
+ <td class="bingoTile {{ if .Checked }}checked{{ end }} {{ if not .Checkable }}locked{{ end }}">{{ .Text }}</td>
{{ end }}
</tr>
{{ else }}
@@ -13,4 +14,5 @@
{{ end }}
</tbody>
</table>
+</main>
{{ end }}