From 2d7874b7a58861ebc452374ad22013c5d200f1f9 Mon Sep 17 00:00:00 2001 From: Mark Powers Date: Sun, 1 Dec 2024 19:23:46 -0600 Subject: Add recipe content --- layouts/recipe/single.html | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 layouts/recipe/single.html (limited to 'layouts/recipe/single.html') diff --git a/layouts/recipe/single.html b/layouts/recipe/single.html new file mode 100644 index 0000000..fb88d7f --- /dev/null +++ b/layouts/recipe/single.html @@ -0,0 +1,46 @@ +{{ define "head" }} + + +{{ end }} + +{{ define "main" }} +{{- $data := transform.Unmarshal .RawContent -}} +
+ +

{{ .Title }}

+
+
+
{{ .PublishDate.Format "January 2, 2006"}}
+

{{- $data.description -}}

+ +
+
+

Ingredients

+
    + {{- range $data.recipeIngredient -}} +
  • + + +
  • + {{ end }} +
+
+ +
+

Instructions

+
    + {{- range $data.recipeInstructions -}} +
  1. + + +
  2. + {{ end }} +
+
+
+ +
+
+{{ end }} -- cgit v1.2.3