Skip to content

Instantly share code, notes, and snippets.

@malerba118
Last active June 14, 2017 12:08
Show Gist options
  • Save malerba118/cd379654c0321c46640c09bc8005f407 to your computer and use it in GitHub Desktop.
Save malerba118/cd379654c0321c46640c09bc8005f407 to your computer and use it in GitHub Desktop.
<header>
<h1>AngularJS Demo App</h1>
<h2>Consuming an API with AngularJS</h2>
</header>
<div id="content">
<div id="note-list">
<div
class="note-list-item"
ng-repeat="note in notes"
ui-sref="note-detail({noteId: note.id})">
<p class="note-list-title">{{note.title}}</p>
</div>
</div>
<div id="note-detail" ui-view></div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment