DO288-apps/todo-ssr/views/items.pug
2021-06-21 16:47:17 -04:00

11 lines
269 B
Text

html
head
title Todo Items
body
h1 Todo List
p Note that this version is non-interactive
ul
each item in items
li
input(type="checkbox" disabled="disabled" checked=item.done ? "checked" : "")
span= item.description