Daniel J. Summers e0af5d19b2 Migrate some apps to components
Using dynamic loading to take advantage of routerLink instead of anchor links
2019-11-10 23:12:22 -06:00

11 lines
320 B
HTML

<div *ngIf="(quotes || []).length > 0">
<h3>What They Say</h3>
<blockquote *ngFor="let quote of quotes">
<p class="quote" [innerHtml]="quote.full"></p>
<p class="source">
&mdash; <strong>{{ quote.name }}</strong>
<span *ngIf="quote.from">, {{ quote.from }}</span>
</p>
</blockquote>
</div>