index.html 778 B

12345678910111213141516171819202122232425
  1. <div class="note-wrapper">
  2. <div class="note-content">
  3. <div class="notes-header">
  4. <h1 title="Notes">Notes</h1>
  5. <a class="btn-b" href='#/notes/new' ng-if='loggedIn'>
  6. <i class="icon add"></i>
  7. New Note
  8. </a>
  9. </div>
  10. <div class="note-wrapper">
  11. <p ng-show="note">Nothing here to show you, friend.</p>
  12. <a class="card-notes" ng-repeat="note in notes | filter:current" ng-href="#/notes/{{note.id}}">
  13. <nw-card header="note.title"
  14. icon="{{note.icon}}"
  15. body="note.description"
  16. id="note.id"
  17. type="{{note.noteType.name}}"></nw-card>
  18. </a>
  19. </div>
  20. </div>
  21. <nw-category-select active-category='current' notes='notes'></nw-category-select>
  22. </div>