Skip to content

Instantly share code, notes, and snippets.

@dujo-stack
Created September 24, 2019 08:11
Show Gist options
  • Save dujo-stack/d3fced39193a2fec95dd3ad5308a457e to your computer and use it in GitHub Desktop.
Save dujo-stack/d3fced39193a2fec95dd3ad5308a457e to your computer and use it in GitHub Desktop.
<!--
<li >
{{article.title}}
</li> -->
<div class="row" *ngFor="let article of articleslist | async">
<div class="col s12 m6">
<div class="card blue-grey darken-1">
<div class="card-content white-text">
<span class="card-title"> {{article.title}}</span>
<!-- <p>I am a very simple card. I am good at containing small bits of information.
I am convenient because I require little markup to use effectively.</p> -->
</div>
<div class="card-action">
<a href="#">Ver</a>
<a href="#">Editar</a>
</div>
</div>
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment