duck-booking-tool-front/app/dashboard.component.html
Gergely Polonkai 3e02eb4abb Update for the final version of Angular2
It lost some functionality, but it was never put to use.
2016-10-28 05:19:23 +02:00

11 lines
275 B
HTML

<h3>Duck Dashboard!</h3>
<div class="list-group">
<a *ngFor="let duck of ducks"
class="list-group-item duck-link"
href="#">
<div class="image pull-left"></div>
{{ duck.name }}
<p class="clearfix small">Something.</p>
</a>
</div>