11 lines
326 B
HTML
11 lines
326 B
HTML
<div *ngIf="(quotes || []).length > 0">
|
|
<h3>The Business Impact</h3>
|
|
<blockquote *ngFor="let quote of quotes">
|
|
<p class="quote" [innerHtml]="quote.full"></p>
|
|
<p class="source">
|
|
— <strong>{{ quote.name }}</strong>
|
|
<span *ngIf="quote.from">, {{ quote.from }}</span>
|
|
</p>
|
|
</blockquote>
|
|
</div>
|