+ +
+

{{ .Title }}

+
+ +
+
{{.Content}}
+
+ +
+ {{ with .Params.yield }} +
+

Yields: {{ . }}

+
+ {{ end }} + {{ with .Params.prepTime }} +
+

Preparation time: {{ . }}

+
+ {{ end }} + {{ with .Params.cookTime }} +
+

Cooking time: {{ . }}

+
+ {{ end }} +
+ + +
+
+ + {{ with .Params.Components}} +

Components

+
    + + {{ range . }} +
  • + {{ with ( . | markdownify) }}{{ partial "recipe_item.html" . }}{{ end }} +
  • + {{ end }} +
+ {{ end }} + + {{ with .Params.Ingredients }} +

Ingredients

+
    + + {{ range . }} +
  • + {{ with ( . | markdownify) }}{{ partial "recipe_item.html" . }}{{ end }} +
  • + {{ end }} +
+ {{ end }} +
+ +
+

Directions

+
    + {{ range .Params.Directions }} +
  • + {{ with ( . | markdownify) }}{{ partial "recipe_item.html" . }}{{ end }}
  • + {{ end }} +
+
+
+ + + + {{ with .Params.Components }} +
+ ↓ This is a component-based recipe (fancy talk for making the dish in pieces, then assembling). ↓ +
+ +
+ {{ range . }} + {{ $compTitle := . }} +
+ {{ range where $.Site.Pages "Title" $compTitle }} +

{{ .Title }}

+ {{ range (.Resources.ByType "image") }} +
+ +
+ {{ end }} + {{ if .Params.Imagecredit }} + + + camera icon + + + + {{ end }} + +

Ingredients

+
    + {{ range .Params.Ingredients }} +
  • + {{ with ( . | markdownify) }}{{ partial "recipe_item.html" . }}{{ end }} +
  • + {{ end }} +
+ +

Steps

+
    + {{ range .Params.Directions }} +
  • + {{ with ( . | markdownify) }}{{ partial "recipe_item.html" . }}{{ end }} +
  • + {{ end }} +
+ + {{ end }} +
+ {{ end }} +
+ + {{ end }} + +
+ + {{ with .Params.Category }}{{ partial "taxonomy/category" . }}{{ end }} + {{ with .Params.Cuisine }}{{ partial "taxonomy/cuisine" . }}{{ end }} + {{ with .Params.Tags }}{{ partial "taxonomy/tags" . }}{{ end }} + +