1
0
Fork 0
sortable-recipes/ember-ui/app/templates/meal.hbs
2019-12-24 17:25:08 -06:00

14 lines
394 B
Handlebars

<h1 class="text-5xl -mt-4 text-teal-500 font-hairline">
{{@model.name}}
</h1>
<img src={{@model.thumbnailUrl}} alt="" class="float-right w-1/3 rounded-lg ml-8 mb-4 shadow-lg border-8 border-white">
<p class="text-gray-700 text-base whitespace-pre-line">
{{@model.instructions}}
</p>
<div class="mt-4">
<MealTag>{{@model.category}}</MealTag>
<MealTag>{{@model.area}}</MealTag>
</div>