Skip to content

Instantly share code, notes, and snippets.

@duarte171183
Created September 28, 2019 06:08
Show Gist options
  • Save duarte171183/8816a8e98422bffc6de665b9cefdfecb to your computer and use it in GitHub Desktop.
Save duarte171183/8816a8e98422bffc6de665b9cefdfecb to your computer and use it in GitHub Desktop.
<div class="row">
<button [routerLink]="['/article/new']" class="waves-effect waves-light btn blue right">Nuevo Articulo<i
class="material-icons right">add</i>
</button>
<h4 class="h4">Articulos</h4>
<div class="row">
<div class="col s12 m4" *ngFor="let article of articleslist | async">
<div class="card small hoverable">
<div class="card-content">
<span class="card-title"> {{article.title}}</span>
<p>{{article.body}}</p>
</div>
<div class="card-action">
<a href="#">Ver</a>
<a href="#">Editar</a>
</div>
</div>
</div>
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment