blob: 13c0de062cf4d7025e73df96e2279dc792f6bdc1 (
plain)
1
2
3
4
5
6
7
8
|
{{define "recipe-step"}} <section>
<textarea rows="4" cols="50" placeholder="Step description" required>{{.Text}}</textarea>
<div class="ingredients">{{range .Ingredients}}
{{ template "recipe-ingredient" . }}{{end}}
</div>
<button type="button" onclick="addNewIngredient(this);">add ingredient</button>
<button type="button" onclick="parentNode.remove();">remove step</button>
</section>{{end}}
|