diff --git a/content/rezept/klassisch/rezept.yaml/contents.lr b/content/rezept/klassisch/rezept.yaml/contents.lr index 521b62d..be2c105 100644 --- a/content/rezept/klassisch/rezept.yaml/contents.lr +++ b/content/rezept/klassisch/rezept.yaml/contents.lr @@ -85,7 +85,7 @@ processing: notes: ##### flow_notes ##### -note: 1l Vollei entspricht 20 Eiern +note: 1 l Vollei entspricht 20 Eiern ----- html: ---- @@ -276,7 +276,7 @@ processing: notes: ###### flow_notes ###### -note: Alternativ zu Sprudel kann auch fast jedes andere Kohlensäurehaltige Getränk verwendet werden. +note: Alternativ zu Sprudel kann auch fast jedes andere Kohlensäurehaltige Getränk verwendet werden ------ html: #### flow_ingredients #### diff --git a/templates/zutaten/hinweise.html b/templates/zutaten/hinweise.html index d3d1421..4334ad1 100644 --- a/templates/zutaten/hinweise.html +++ b/templates/zutaten/hinweise.html @@ -13,7 +13,14 @@ {%- for ovn in child.oven.blocks -%} {%- if ovn.amount is defined and ovn.amount != "" -%} {{- '\n ' -}}
  • - {{- '\n ' -}} Ofentemperatur: {{ ovn.amount }} {{ ovn.unit | default('C') }} + {{- '\n ' -}} Ofentemperatur: {{ ovn.amount }} + {%- if ovn.unit | default('C') == 'C' -%} + {{- ' °C' -}} + {%- else -%} + {{- ' ' -}} + {{- ovn.unit -}} + {%- endif -%} + {{- '\n ' -}}
  • {%- endif -%} {%- endfor -%} diff --git a/templates/zutaten/oven.yaml b/templates/zutaten/oven.yaml index 1b03646..e71c326 100644 --- a/templates/zutaten/oven.yaml +++ b/templates/zutaten/oven.yaml @@ -9,7 +9,8 @@ {{- '\noven_temp:' -}} {%- endif -%} {{- '\n - amount: ' -}} '{{- ovn.amount -}}' - {{- '\n unit: ' -}} {{- ovn.unit | default('C') -}} + {{- '\n unit: ' -}} + {{- if ovn.unit | default('C') -}} {%- endif -%} {%- endfor -%} {%- endif -%}