2021-07-31 21:13:24 +02:00
{#-
Die Zubereitung des Rezept...
-#}
{{- '\n ' -}} < div class = "content__box" >
{{- '\n ' -}} < div class = "content__inner_box" >
{{- '\n ' -}} < h2 > Zubereitung< / h2 >
2021-12-23 01:27:19 +01:00
{{- '\n ' -}} < ul class = "zubereitung" >
2021-07-31 21:13:24 +02:00
{%- for stp in child.steps.blocks -%}
{%- if stp.step is defined and stp.step != "" -%}
{{- '\n ' -}} < li >
{{- '\n ' -}} < span > {{ stp.step }}< / span >
2021-08-11 21:42:40 +02:00
{%- if stp.haccp_type is defined and stp.haccp_type != "" and stp.haccp_string is defined and stp.haccp_string != "" and not only_render_steps | default(false) -%}
2021-07-31 21:13:24 +02:00
{{- '\n ' -}} < ul >
{{- '\n ' -}} < li >
{{- '\n ' -}}< span class = "{{- stp.haccp_type|lower -}}" > {{ stp.haccp_string }}< / span >
{{- '\n ' -}} < / li >
{{- '\n ' -}} < / ul >
{%- endif %}
2021-08-11 21:42:40 +02:00
{%- if stp.notes is defined and stp.notes != "" and stp.notes.blocks is defined and not only_render_steps | default(false) -%}
2021-07-31 21:13:24 +02:00
{%- if stp.notes.blocks != [] -%}
{{- '\n ' -}} < ul >
{%- for nde in stp.notes.blocks -%}
{{- '\n ' -}} < li >
{{- '\n ' -}} < span > {{- nde.note -}}< / span >
{{- '\n ' -}} < / li >
{%- endfor -%}
{{- '\n ' -}} < / ul >
{%- endif -%}
{%- endif -%}
{{- '\n ' -}} < / li >
{%- endif %}
{%- endfor -%}
{{- '\n ' -}} < / ul >
{{- '\n ' -}} < / div >
{{- '\n ' -}} < / div >