Todo list

<% if (tasks.empty) { %>

No Tasks

<% } else { %>
    <% tasks.each { task -> %>
  • ${task.title}
  • <% } %>
<% } %>

Create a new task