diff options
Diffstat (limited to 'data/templates/recipe.html')
-rw-r--r-- | data/templates/recipe.html | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/data/templates/recipe.html b/data/templates/recipe.html index 31fc7e3..21a6a15 100644 --- a/data/templates/recipe.html +++ b/data/templates/recipe.html @@ -19,12 +19,11 @@ <p><a href="{{.Recipe.Url}}">Link</a></p> - <hr> - {{range .Recipe.Steps}} + <section> <p>{{.Text}}</p> <p><i>{{range $i, $el := .Ingredients}}{{if $i}}, {{end}}{{$el.Amount}} {{$el.Type}}{{end}}</i></p> - <hr> + </section> {{end}} <a href="/recipe/edit?id={{.Id}}"><button>edit</button></a> |