Created
September 24, 2015 19:31
-
-
Save vaneves/6a6af2c7ae585562bb99 to your computer and use it in GitHub Desktop.
Blog Ninja - Blog Detail 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-if="post && post.id"> | |
<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="!post || !post.id"> | |
<h2 class="title">Página Não Encontrada</h2> | |
<p>Publicação não encontrada. Ir para <a href="#/">página inicial</a>.</p> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment