This repository has been archived on 2021-01-15. You can view files and clone it, but cannot push or open issues or pull requests.
goBug/template/tabella.html

18 lines
317 B
HTML

<table>
{{range $riga := .matrice}}
<tr>
{{range $cella := $riga}}
<td {{ if not $cella }}
class="vuoto"> </td>
{{ else }}
{{ if $cella.IsFood }}
class="cibo"
{{ else }}
class="razza1"
{{ end }}>{{ $cella.Health }}</td>
{{ end }}
{{ end }}
</tr>
{{ end }}
</table>