16 lines
293 B
Plaintext
16 lines
293 B
Plaintext
|
package bootstrap
|
||
|
|
||
|
templ Table(header []string) {
|
||
|
<table class="table">
|
||
|
<thead>
|
||
|
<tr>
|
||
|
for _, item := range header{
|
||
|
<th scope="col">{ item }</th>
|
||
|
}
|
||
|
</tr>
|
||
|
</thead>
|
||
|
<tbody>
|
||
|
|
||
|
</tbody>
|
||
|
</table>
|
||
|
}
|