This demo can: - Serve a webpage - Serve static assets - Asynchronously fetch html
9 lines
208 B
HTML
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>
|