Can we achieve something like the example below?
<div *ngFor="let post of posts">
<p class="quote {{post.color}}-quote">
{{ post.content }}
<span class="author">Anatoly Weinstein, Founder of Theora</span>
</p>
</div>
Key line:
class="quote {{post.color}}-quote"
I've come across similar concerns, but I'd prefer to avoid using booleans and hardcoding each element.