yesod-static-angular-0.1.0: example/templates/todo.hamlet
<div ng-controller="TodoCtrl"> <!-- The controller name matches what is in angular-app/todo-ctrl.js -->
<span>{{remaining()}} of {{todos.length}} remaining [
<a href="" ng-click="archive()">archive
]
<ul .unstyled>
<li ng-repeat="todo in todos">
<input type=checkbox ng-model="todo.done">
<span class="done-{{todo.done}}">{{todo.text}}
<form ng-submit="addTodo()">
<input type="text" ng-model="todoText" size=30 placeholder="add new todo here">
<input .btn-primary type="submit" value="add">