Skip to content

Instantly share code, notes, and snippets.

@Abiwax
Created January 27, 2018 18:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Abiwax/64b212d267bee857eb617f00c5edfc41 to your computer and use it in GitHub Desktop.
Save Abiwax/64b212d267bee857eb617f00c5edfc41 to your computer and use it in GitHub Desktop.
Card Sample
<div class="card" (click)="goToMap(job)">
<div class="card-block">
<h4 class="card-title">{{job.title}}</h4>
<h6 class="card-subtitle mb-2 text-muted">{{job.company}} | {{job.date}} | <span class="money"><i
class="fa fa-money" aria-hidden="true" style="color: green;"></i>{{job.salary}}</span></h6>
<p class="card-text">{{job.description}}</p>
<div class="row bottom_info">
<span><i class="fa fa-map-marker" aria-hidden="true" style="color: red;"></i>{{job.locations}}</span>
<span class="url_link" style="right: 0"><a href="{{job.url}}" target="_blank" class="card-link"><i
class="fa fa-link" aria-hidden="true"></i></a></span>
</div>
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment