Created
September 28, 2019 06:08
-
-
Save dujo-stack/8816a8e98422bffc6de665b9cefdfecb to your computer and use it in GitHub Desktop.
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 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