Skip to content

Instantly share code, notes, and snippets.

@vaneves
Created September 24, 2015 19:24
Show Gist options
  • Save vaneves/4ae03908873924ddbed1 to your computer and use it in GitHub Desktop.
Save vaneves/4ae03908873924ddbed1 to your computer and use it in GitHub Desktop.
Curso Ninja - Blog List HTML
<div ng-repeat="post in posts">
<h2 class="title">
<a href="#/detail/{{ post.id }}">{{ post.title }}</a>
</h2>
<p class="text-muted">Publicado em {{ post.date }}</p>
<p>{{ post.content }}</p>
</div>
<div ng-if="posts.length == 0">
<p>Nenhum post publicado.</p>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment