You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

rezept.hbs 658B

123456789101112
  1. <button type="button" class="rezept {{if @rezept.isselected "selected"}}" {{on "click" (fn this.toggleSelection @rezept.titel)}}>
  2. <span><img src={{@rezept.bild}} alt="Ein Bild von {{@rezept.titel}}"/></span>
  3. <span>
  4. <h3>{{@rezept.titel}}</h3>
  5. <ul class="details">
  6. <li class="detail"><h4>Zutaten:</h4>{{#each @rezept.produkte as |produkt|}}
  7. {{produkt.attributes.titel}}, {{/each}}Gewürze</li>
  8. <li class="detail"><h4>Personen:</h4>{{@rezept.personen}}</li>
  9. <li class="detail"><h4>Dauer:</h4>{{@rezept.dauer}} Minuten</li>
  10. </ul>
  11. </span>
  12. </button>