Created
September 24, 2015 19:24
-
-
Save vaneves/4ae03908873924ddbed1 to your computer and use it in GitHub Desktop.
Curso Ninja - Blog List HTML
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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