notes.html 336 B

123456789101112
  1. ...
  2. <div class="note-wrapper">
  3. <a class="card-notes" ng-repeat="note in notes"
  4. ng-href="#/notes/{{ note.id }}">
  5. <!-- We pass the header because nw-card has an isolated scope, which
  6. prevents it from gaining access to parent information -->
  7. <nw-card header="note.title" icon="note.icon"></nw-card>
  8. </a>
  9. </div>
  10. ...