2019-08-04 23:59:28 -05:00
|
|
|
{% from 'recipe/macro.yml' import render_recipe_fulfilment %}
|
|
|
|
{% for recipe in grocy.recipes %}
|
2019-09-25 23:14:11 -05:00
|
|
|
id: {{ recipe.fields.id }}
|
2019-08-04 23:59:28 -05:00
|
|
|
name: {{ recipe.fields.name }}
|
2019-09-25 23:14:11 -05:00
|
|
|
base_servings: {{ recipe.fields.base_servings }}
|
2019-08-04 23:59:28 -05:00
|
|
|
required_fulfilled: {{ render_recipe_fulfilment(recipe.fields.fulfillment, grocy.meta.fa_icons) }}
|
|
|
|
description: |-
|
2019-10-02 23:19:47 -05:00
|
|
|
{{ recipe.fields.description }}
|
2019-08-04 23:59:28 -05:00
|
|
|
{% if loop.nextitem %}
|
|
|
|
---
|
|
|
|
{%endif%}
|
|
|
|
{%endfor %}
|