wasm-bindgen/examples/todomvc/templates/row.html
2018-10-23 14:15:42 +01:00

8 lines
248 B
HTML

<li data-id="{{ id }}"{% if completed %} class="completed"{% endif %}>
<div class="view">
<input class="toggle" type="checkbox"{% if completed %} checked{% endif %}>
<label>{{ title }}</label>
<button class="destroy"></button>
</div>
</li>