aboutsummaryrefslogtreecommitdiffstats
path: root/templates/bingo.html
blob: 1305b9a09ea606e804342031ffc0d548e0c2fabb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{{ define "title" }}Bingo{{ end }}
{{ define "content" }}
<main>
<table class="bingoCard">
    <tbody>
    {{ range .Rows }}
    <tr>
        {{ range . }}
        <td class="bingoTile {{ if .Checked }}checked{{ end }} {{ if not .Checkable }}locked{{ end }}">{{ .Text }}</td>
        {{ end }}
    </tr>
    {{ else }}
    <td>No Rows!</td>
    {{ end }}
    </tbody>
</table>
</main>
{{ end }}