Files
hello-htmx/templates/fragment/table.html
Jonas Kattendick ea59f1ed1e feat: implement basic server
This demo can:
- Serve a webpage
- Serve static assets
- Asynchronously fetch html
2023-05-09 20:56:09 +02:00

9 lines
208 B
HTML

<thead>
<tr><th>foo</th><th>bar</th><th>baz</th></tr>
</thead>
<tbody>
{% for row in table %}
<tr><td>{{ row.foo }}</td><td>{{ row.bar }}</td><td>{{ row.baz }}</td></tr>
{% endfor %}
</tbody>