Is it possible to create something like 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>
Important line: class="quote {{post.color}}-quote"
I've seen similar issues, but I don't want to use booleans and hardcode every element.
