Daniel J. Summers cfaf2e84f7
Create Angular version (#1)
Convert site to Angular; also reworked contents on solution pages
2019-11-14 22:22:18 -06:00

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">
&mdash; <strong>{{ quote.name }}</strong>
<span *ngIf="quote.from">, {{ quote.from }}</span>
</p>
</blockquote>
</div>